mekosotto Claude Opus 4.7 (1M context) commited on
Commit
6ba9168
·
1 Parent(s): 0af6558

refactor(bbb): align pin_threads() comment with EEG/MRI sibling files

Browse files

EEG and MRI both append "See src.core.determinism." to the §4-rule-3
comment block. BBB silently dropped the pointer in 4dab60f. This
restores cross-pipeline consistency.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Files changed (1) hide show
  1. src/pipelines/bbb_pipeline.py +1 -1
src/pipelines/bbb_pipeline.py CHANGED
@@ -26,7 +26,7 @@ from src.core.storage import write_parquet
26
  logger = get_logger(__name__)
27
 
28
  # Pin BLAS / OpenMP / pyarrow to single-threaded mode so byte-determinism
29
- # (AGENTS.md §4 rule 3) holds across hardware.
30
  pin_threads()
31
 
32
  # Suppress RDKit's noisy C++-level warning stream; we surface our own
 
26
  logger = get_logger(__name__)
27
 
28
  # Pin BLAS / OpenMP / pyarrow to single-threaded mode so byte-determinism
29
+ # (AGENTS.md §4 rule 3) holds across hardware. See src.core.determinism.
30
  pin_threads()
31
 
32
  # Suppress RDKit's noisy C++-level warning stream; we surface our own