「view this page in B3 βῆτα server」

Revisions №21175

branch: rosetta:commits 「№21175」
Commited by: Ninshiki
GitHub Pull Request link: 「№660」
Merge: 「068bd8532」「8e107b58d」  code diff
Scheduled at: 2026-04-27 17:32:44.679225
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Pull Request №660 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/fix/simulate-mpi-memory-leak Merge: 068bd85322153b1ddc5a354f8cf0633a5631e9fa←8e107b58d4261b849c1987b2ce35860ec09eb427 Fix memory leak in SimulateMPI: use unique_ptr for simulation_ ownership ---------------- Merge commit message: Fix memory leak in SimulateMPI: use unique_ptr for simulation_ ownership initialize_simulation() unconditionally assigned a new SimulateMPIData* without deleting any previous allocation, leaking memory on re-initialization. Switch simulation_ from a raw pointer to unique_ptr so reset() properly frees the old object and the static is cleaned up at program exit.