add --venv_path option for running without containers#31
Merged
JeniaJitsev merged 100 commits intomainfrom Feb 4, 2026
Merged
Conversation
Add a GitHub Actions workflow that sets up a real SLURM cluster with Apptainer on a GPU runner to test the schedule_evals workflow end-to-end. - New workflow: slurm-integration.yml - Sets up SLURM (slurmctld + slurmd) on AWS GPU runner - Installs Apptainer and builds test container - Pre-downloads tiny-gpt2 model and arc_easy dataset - Runs integration test that validates full workflow - New test container: tests/integration/ci.def - Based on PyTorch with CUDA support - Includes lm_eval and dependencies - New integration test: tests/integration/test_slurm.py - Submits real SLURM job via schedule_evals - Waits for completion and validates results JSON - Updated clusters.yaml with CI cluster configuration
Switch to CPU instances (i7ie) since GPU quota is not available: - Remove GPU/GRES configuration from SLURM setup - Update test to support --dry-run mode for CPU-only testing - Validate sbatch script generation without actual job execution - Update CI cluster config to use debug partition Full GPU testing can be re-enabled later when quota is available.
c781eed to
8d80a6b
Compare
8d80a6b to
5320d5f
Compare
Collaborator
Author
|
This wasn't meant to be merged yet @JeniaJitsev |
timurcarstensen
added a commit
that referenced
this pull request
Feb 4, 2026
This reverts commit c015e51.
timurcarstensen
added a commit
that referenced
this pull request
Feb 4, 2026
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.
Adds
--venv_pathtoschedule-eval. If provided, jobs run using that venv instead of a container.CI updated to test both modes.
merge after #28
Summary: