Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial work toward integrating Parsl #22

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*~
.*.sw[op]
./*.png
.idea/
11 changes: 11 additions & 0 deletions test_drivers/testing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
timing:
sql_path: log_data
project: uiuc
queue: pdebug
nnodes: 1
mirge_branch: production
pyopenclCTX: port:tesla
host: Lassen
gpu_arch: GV100GL
timing_repo: illinois-ceesd/timing.git
timing_branch: main
25 changes: 25 additions & 0 deletions test_drivers/time-lazy-flame1d.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
driver:
name: flame1d-lazy
repo: illinois-ceesd/drivers_flame1d
branch: update-to-y3
execname: &EXE flame1d
params:
nviz: 100
nrestart: 100
nhealth: 100
nstatus: 100
current_dt: 1.0e-8
t_final: 2.e-7
order: 1
alpha_sc: 0.5
s0_sc: -5.0
kappa_sc: 0.5
integrator: rk4
health_pres_min: 1700
health_pres_max: 280000
timing_env_name: !join [*EXE, .lazy.timing.env]
summary_file_root: !join [*EXE, _lazy]
yaml_file_name: !join [*EXE, -timings.yaml]
logdir: !join [*EXE, _lazy_logs]
execopts: --lazy --log
mem_usage: False
25 changes: 25 additions & 0 deletions test_drivers/time-lazy-isolator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
driver:
name: y2-isolator
repo: illinois-ceesd/drivers_y2-isolator
branch: main
execname: &EXE isolator
params:
nviz: 100
nrestart: 100
nhealth: 100
nstatus: 100
current_dt: 1.0e-8
t_final: 2.e-7
order: 1
alpha_sc: 0.5
s0_sc: -5.0
kappa_sc: 0.5
integrator: rk4
health_pres_min: 1700
health_pres_max: 280000
timing_env_name: !join [ *EXE, .lazy.timing.env ]
summary_file_root: !join [ *EXE, _lazy ]
yaml_file_name: !join [ *EXE, -timings.yaml ]
logdir: !join [ *EXE, _logs ]
execopts: --lazy --log
mem_usage: True
21 changes: 21 additions & 0 deletions test_drivers/time-lazy-nozzle.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
driver:
name: y1-production-nozzle-lazy
repo: illinois-ceesd/drivers_y1-nozzle
branch: main
execname: &EXE nozzle
params:
nviz: 100
nrestart: 100
current_dt: 5e-8
t_final: 1.e-6
order: 1
alpha_sc: 0.5
s0_sc: -5.0
kappa_sc: 0.5
logDependent: 0
timing_env_name: !join [*EXE, .lazy.timing.env]
summary_file_root: !join [ *EXE, _lazy ]
yaml_file_name: !join [ *EXE, -lazy-timings.yaml]
logdir: !join [ *EXE, _lazy_logs ]
execopts: --lazy --log
mem_usage: True
Loading