Commit 41825d7d authored by Hamilton, Steven P.'s avatar Hamilton, Steven P.
Browse files

Fixing lsf parameters on CPU test.

parent 433327fa
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_cpu_32node"
    nodes = "32"
    ppn = "160"
    ppn = "20"
    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 = "mpirun --oversubscribe -np 5120 --map-by ppr:160:node ${EXECUTABLE} -i c5g7_3d_cpu_32node.xml | tee stdout.txt"
    joblaunchcommand = "mpirun --oversubscribe --map-by ppr:160:node ${EXECUTABLE} -i c5g7_3d_cpu_32node.xml | tee stdout.txt"

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