Fix interop tests: replace MPMD with individual mpiexec runs#5
Merged
Conversation
The MPMD launch mode (mpiexec -n 1 prog1 : -n 1 prog2) does not share MPI_COMM_WORLD across programs with MPICH, causing each process to see size=1. Also, Julia MPI.jl first-time precompilation inside mpiexec caused 30+ minute hangs in CI. Changes: - Run each language test independently with mpiexec -n 2 - Add Julia Project.toml and precompile MPI.jl before test runs - Add 300s timeout for Julia tests in run_interop.sh - Add 30-minute job timeout in CI workflow - Track per-test pass/fail status with proper exit codes Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
mpiexec -n 2per language, fixing MPICH compatibility (MPMD does not shareMPI_COMM_WORLDacross programs)Project.tomland precompile MPI.jl before test runs to avoid 30+ minute precompilation hangs inside mpiexecTest plan
🤖 Generated with Claude Code