Commit 6dad716f authored by Hamilton, Steven P.'s avatar Hamilton, Steven P.
Browse files

Fixing up jsrun command.

parent fee3a90f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ def make_batch_script(batch_recursive_mode,path_to_workspace,test_id_string,sche
    rgtenvironmentalfile = os.environ["RGT_ENVIRONMENTAL_FILE"]
    jobname = "profugus_gpu_32node"
    nodes = "32"
    ppn = "20"
    ppn = "4"
    ranks = str(int(nodes) * int(ppn))
    batchqueue = "batch"
    pbsaccountid = os.environ["RGT_PBS_JOB_ACCNT_ID"]
@@ -109,7 +109,7 @@ def make_batch_script(batch_recursive_mode,path_to_workspace,test_id_string,sche
    workdir = os.path.join(path_to_workspace,"workdir") 
    resubmitme = batch_recursive_mode
    walltime = "01:00"
    joblaunchcommand = "jsrun --nrs ${NUM_NODES} --cpu_per_rs 20 --gpu_per_rs 4 --tasks_per_rs 4 --rs_per_host 1 -E LD_LIBRARY_PATH ${EXECUTABLE} -i c5g7_3d_gpu_32node.xml | tee stdout.txt"
    joblaunchcommand = "jsrun --nrs ${NUMPROCS} --cpu_per_rs 1 --gpu_per_rs 1 --tasks_per_rs 1 --rs_per_host 4 -E LD_LIBRARY_PATH ${EXECUTABLE} -i c5g7_3d_gpu_32node.xml | tee stdout.txt"

    rg_array = [ 
                (re.compile("__jobname__"),jobname),