File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
web-conexs-api/src/slurm_submission_service Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def submit_fdmnes(session, sim: Simulation):
2222 user = sim .person .identifier
2323 uid = uuid .uuid4 ()
2424
25- job_name = application_name + "-" + str (uid )
25+ job_name = sim . id + "-" + application_name + "-" + str (uid )
2626
2727 file_map = {}
2828 file_map ["job.txt" ] = job_string
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def submit_orca(session, sim: Simulation):
2323 user = sim .person .identifier
2424 uid = uuid .uuid4 ()
2525
26- job_name = application_name + "-" + str (uid )
26+ job_name = sim . id + "-" + application_name + "-" + str (uid )
2727 working_dir = str (Path (ROOT_DIR ) / Path (user ) / Path (job_name ))
2828
2929 file_map = {"job.inp" : job_string }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def submit_qe(session, sim: Simulation):
2727 user = sim .person .identifier
2828 uid = uuid .uuid4 ()
2929
30- job_name = application_name + "-" + str (uid )
30+ job_name = sim . id + "-" + application_name + "-" + str (uid )
3131 working_dir = str (Path (ROOT_DIR ) / Path (user ) / Path (job_name ))
3232
3333 core_file = Path (pp_abs ).with_suffix (".wfc" )
You can’t perform that action at this time.
0 commit comments