Add pip installation docs and update RPATH configuration#1
Closed
lukemartinlogan wants to merge 4 commits intomainfrom
Closed
Add pip installation docs and update RPATH configuration#1lukemartinlogan wants to merge 4 commits intomainfrom
lukemartinlogan wants to merge 4 commits intomainfrom
Conversation
- Add pip tab as recommended installation method on installation page - Update Python API docs with pip install instructions - Document self-contained package (static deps, no system requirements) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
lukemartinlogan
pushed a commit
that referenced
this pull request
Mar 19, 2026
…ed servers Three root causes fixed: 1. module_manager.cc: Use first-wins policy in LoadChiMod(). The scan searches multiple directories (GetModuleDirectory via NFS path, CHI_REPO_PATH, and all LD_LIBRARY_PATH entries including spack). The previous last-wins policy let a stale spack-installed module overwrite the freshly-built one, causing max_blocks_per_operation=0 in bdev and free(): invalid pointer in CAE/CEE due to ABI mismatch. Now the first found version (always the freshly-built library) wins. 2. test_ipc_transport_modes.cc: Add ServerGuard RAII wrapper. Each IPC transport test forks a Chimaera server child process. If a REQUIRE() assertion threw before CleanupServer() was reached, the child kept running and held TCP port 5555, causing all subsequent CTE/CAE/CEE tests to fail with "Port already in use". The ServerGuard destructor always calls CleanupServer(), even during stack unwinding. 3. CMakeLists.txt: Add chimaera_pre_test_cleanup fixture test (test #1). Kills any processes still holding ports 5555/5556/5558 and removes leftover /tmp/chimaera_*.ipc, /tmp/chimaera_memfd/, and /dev/shm/sm_segment.* files from a previous crashed test run. Result: 282/282 tests pass (was 168/281). Co-Authored-By: Claude Sonnet 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
Test plan
npm run build)🤖 Generated with Claude Code