Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
xzackli committed Dec 12, 2023
1 parent 198a015 commit 091a4bd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions project/ana_cov_comp/README_perlmutter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

## Window alms:
```bash
alias shortjob="sbatch paramfiles/1perlmutternode.slurm $1" # short QOS
shortjob "srun --ntasks 1 --cpus-per-task 128 --cpu-bind=cores python -u \
python python/get_1pt_ewin_alms.py paramfiles/cov_dr6_v4_20231128.dict"
shortjob "srun --ntasks 1 --cpus-per-task 128 --cpu-bind=cores python -u \
python python/get_2pt_ewin_alms.py paramfiles/cov_dr6_v4_20231128.dict"
```

## Couplings:
```bash
sbatch paramfiles/2pt_coupling_matrices.slurm
```

```bash
# For production on all 4pt
alias shortjob="sbatch paramfiles/1perlmutternode.slurm $1" # short QOS
for i in {0..57}; do \
shortjob "srun --ntasks 1 --cpus-per-task 128 --cpu-bind=cores python -u \
python/get_4pt_coupling_result.py paramfiles/cov_dr6_v4_20231128.dict $((50*i)) $((50*i+50))"
done
```

0 comments on commit 091a4bd

Please sign in to comment.