Conversation
WalkthroughRemoved cluster-related resource blocks from global Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant WF as Workflow Runner
participant CL as Config Loader
participant GC as Global Config\n(`config/config.yaml`)
participant PR as Profile\n(`profiles/Mogon-NHR/config.yaml`)
participant SC as Scheduler (SLURM)
U->>WF: Start workflow with profile=Mogon-NHR
WF->>CL: Load configuration
CL->>GC: Read global settings (cluster blocks removed)
CL->>PR: Read profile defaults & task overrides
CL-->>WF: Return merged config (profile supplies cluster resources)
rect rgba(200,230,255,0.5)
note right of WF: Submit jobs using profile resources
WF->>SC: Submit docking (partition: parallel, ntasks:512, mem_per_cpu:3000)
WF->>SC: Submit energyMin (mem:350, runtime:90)
WF->>SC: Submit results (mem:65000, runtime:300)
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
config/config.yaml(0 hunks)profiles/Mogon-NHR/config.yaml(1 hunks)
💤 Files with no reviewable changes (1)
- config/config.yaml
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This PR merely adds a profile for cluster execution. The first one to be added is for the Mogon NHR cluster in Mainz, Germany.
Summary by CodeRabbit
New Features
Chores