File tree Expand file tree Collapse file tree 7 files changed +19
-18
lines changed
viscous_weno5_sgb_acoustic Expand file tree Collapse file tree 7 files changed +19
-18
lines changed Original file line number Diff line number Diff line change 11name : Documentation
22
3- on : [push, pull_request, workflow_dispatch]
3+ on :
4+ schedule :
5+ - cron : ' 0 0 * * *' # This runs every day at midnight UTC
6+ workflow_dispatch :
7+ push :
8+ pull_request :
49
510jobs :
611 docs :
712 name : Build & Publish
813 runs-on : ubuntu-latest
914
10- concurrency :
11- group : docs-publish
12- cancel-in-progress : true
13-
1415 steps :
1516 - uses : actions/checkout@v4
1617
4748 echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"
4849
4950 - name : Publish Documentation
50- if : github.repository == 'MFlowCode/MFC' && github.ref == 'refs/heads/master' && github.event_name == 'push '
51+ if : github.repository == 'MFlowCode/MFC' && github.ref == 'refs/heads/master' && github.event_name == 'cron '
5152 run : |
5253 set +e
5354 git ls-remote "${{ secrets.DOC_PUSH_URL }}" -q
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- n_ranks=4
3+ n_ranks=12
44
55if [ " $job_device " == " gpu" ]; then
66 n_ranks=$( nvidia-smi -L | wc -l) # number of GPUs on node
@@ -9,7 +9,7 @@ if [ "$job_device" == "gpu" ]; then
99fi
1010
1111if [" $job_device " == " gpu" ]; then
12- ./mfc.sh bench --mem 8 -j $( nproc) -o " $job_slug .yaml" -- -c phoenix $device_opts -n $n_ranks
12+ ./mfc.sh bench --mem 12 -j $( nproc) -o " $job_slug .yaml" -- -c phoenix $device_opts -n $n_ranks
1313else
1414 ./mfc.sh bench --mem 1 -j $( nproc) -o " $job_slug .yaml" -- -c phoenix $device_opts -n $n_ranks
15- fi
15+ fi
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ sbatch <<EOT
4141#SBATCH --account=gts-sbryngelson3 # charge account
4242#SBATCH -N1 # Number of nodes required
4343$sbatch_device_opts
44- #SBATCH -t 04 :00:00 # Duration of the job (Ex: 15 mins)
44+ #SBATCH -t 02 :00:00 # Duration of the job (Ex: 15 mins)
4545#SBATCH -q embers # QOS Name
4646#SBATCH -o$job_slug .out # Combined output and error messages file
4747#SBATCH -W # Do not exit until the submitted job terminates.
Original file line number Diff line number Diff line change 194194 'cyl_coord' : 'F' ,
195195 'dt' : dt ,
196196 't_step_start' : 0 ,
197- 't_step_stop' : int (60 * (95 * size + 5 )),
198- 't_step_save' : int (60 * (95 * size + 5 )),
197+ 't_step_stop' : int (30 * (95 * size + 5 )),
198+ 't_step_save' : int (30 * (95 * size + 5 )),
199199 # ==========================================================
200200
201201 # Simulation Algorithm Parameters ==========================
Original file line number Diff line number Diff line change 4747 'p' : Nz ,
4848 'dt' : 1e-8 ,
4949 't_step_start' : 0 ,
50- 't_step_stop' : int (60 * (95 * size + 5 )),
51- 't_step_save' : int (60 * (95 * size + 5 )),
50+ 't_step_stop' : int (30 * (95 * size + 5 )),
51+ 't_step_save' : int (30 * (95 * size + 5 )),
5252 # ==========================================================
5353
5454 # Simulation Algorithm Parameters ==========================
Original file line number Diff line number Diff line change 5151 'p' : Nz ,
5252 'dt' : mydt ,
5353 't_step_start' : 0 ,
54- 't_step_stop' : int (40 * (95 * size + 5 )),
55- 't_step_save' : int (40 * (95 * size + 5 )),
54+ 't_step_stop' : int (20 * (95 * size + 5 )),
55+ 't_step_save' : int (20 * (95 * size + 5 )),
5656 # ==========================================================
5757
5858 # Simulation Algorithm Parameters ==========================
Original file line number Diff line number Diff line change 113113 'p' : Nz ,
114114 'dt' : dt ,
115115 't_step_start' : 0 ,
116- 't_step_stop' : int (30 * (25 * size + 5 )),
117- 't_step_save' : int (30 * (25 * size + 5 )),
116+ 't_step_stop' : int (15 * (25 * size + 5 )),
117+ 't_step_save' : int (15 * (25 * size + 5 )),
118118 # ==========================================================
119119
120120 # Simulation Algorithm Parameters ==========================
You can’t perform that action at this time.
0 commit comments