-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'molmod:main' into version-mismatch
- Loading branch information
Showing
2 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
--- | ||
parsl_log_level: WARNING | ||
retries: 0 | ||
ModelEvaluation: | ||
max_simulation_time: 0.4 | ||
gpu: false | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,16 +28,24 @@ jobs: | |
init-shell: bash | ||
cache-environment: true | ||
post-cleanup: 'all' | ||
- name: install pip dependencies and execute pytest | ||
- name: Install dependencies and download containers | ||
shell: micromamba-shell {0} | ||
run: | | ||
which pip | ||
pip install pyfftw colorcet wandb pandas plotly plumed 'numpy<2.0.0' | ||
pip install --no-cache-dir git+https://github.com/i-pi/[email protected] | ||
pip install torch==2.5.1 | ||
pip install git+https://github.com/acesuit/[email protected] | ||
pip install 'psiflow[dev] @ git+https://github.com/molmod/psiflow.git' | ||
cd ${{ runner.temp }} && git clone https://github.com/molmod/psiflow | ||
cd psiflow | ||
export WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} | ||
apptainer exec oras://ghcr.io/molmod/cp2k:2024.1 ls | ||
apptainer exec oras://ghcr.io/molmod/gpaw:24.1 ls | ||
pytest --skip-gpu --psiflow-config=.github/threadpool.yaml | ||
- name: Checkout specific commit | ||
uses: actions/checkout@v4 | ||
- name: Install Psiflow and run tests | ||
shell: micromamba-shell {0} | ||
env: | ||
WANDB_API_KEY: secrets.WANDB_API_KEY | ||
WANDB_MODE: offline # disables WandB server calls | ||
run: | | ||
pip install .[dev] | ||
pip list | ||
pytest --skip-gpu --psiflow-config=.github/threadpool.yaml |