-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
36 lines (28 loc) · 996 Bytes
/
justfile
File metadata and controls
36 lines (28 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
coverage:
#!/usr/bin/env julia --project
using LocalCoverage
c = generate_coverage("SimplexThreeGT"; run_test = true)
html_coverage(c; open=true)
submit type:
julia --project scripts/main.jl submit {{type}} --job scripts/main.toml
slurm-status:
squeue --format="%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R" --me
slurm-count:
squeue --format="%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R" --me | wc -l
sync:
#!/usr/bin/env bash
REMOTE=compute-canada:/home/rogerluo/projects/def-rgmelko/rogerluo/SimplexThreeGT/data
rsync -avzcP $REMOTE/image data/
rsync -avzcP $REMOTE/crunch data/
sync-test:
#!/usr/bin/env bash
REMOTE=compute-canada:/home/rogerluo/projects/def-rgmelko/rogerluo/SimplexThreeGT/data
rsync -avzcP $REMOTE/test data/
pluto:
julia --project=scripts -e 'using Pluto; Pluto.run()'
clean:
rm -rf scripts/slurm
rm -rf scripts/task
rm logs/*
watch path:
julia --project scripts/main.jl watch {{path}}