Added cases for summit

This commit is contained in:
James E McClure
2018-03-16 12:24:32 -04:00
parent d6b8a7525a
commit 782bb2b658
10 changed files with 139 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
1.0 1.0
1.0 1.0
1.0e-3 0.95
0.0 0.0 1.0e-6
0 0 10.0 1.0
100 5000 1e-5

View File

@@ -0,0 +1,3 @@
10 10 12
320 320 320
1.0 1.0 1.0

View File

@@ -0,0 +1,6 @@
1.0 1.0
1.0 1.0
1.0e-3 0.95
0.0 0.0 1.0e-6
0 0 10.0 1.0
100 5000 1e-5

View File

@@ -0,0 +1,3 @@
15 15 16
320 320 320
1.0 1.0 1.0

View File

@@ -0,0 +1,5 @@
1.0
0.0 0.0 1.0e-6
0 0 1.0 1.0
100 1000 1.0e-5

View File

@@ -0,0 +1,3 @@
1 1 1
320 320 320
1.0 1.0 1.0

View File

@@ -0,0 +1,13 @@
#!/bin/bash
NRANKS=3600
echo $NRANKS
DIR=$NRANKS"p"
mkdir -p $DIR
BASEDIST="SignDist.0"
BASEID="ID.0"
for i in `seq -w 0 $NRANKS`; do idfile="$BASEID$i"; echo $idfile; cp ID.00000 $DIR/$idfile; done
for i in `seq -w 0 $NRANKS`; do distfile="$BASEDIST$i"; echo $distfile; cp SignDist.00000 $DIR/$distfile; done

View File

@@ -0,0 +1,48 @@
#!/bin/bash
#BSUB -P CSC275MCCLURE
#BSUB -J spheres
#BSUB -o spheres.o%J
#BSUB -W 10
#BSUB -nnodes 1
##BSUB -env "all,JOB_FEATURE=NVME"
date
module load gcc cuda
export SCALBL_DIR=$HOME/summit/build/LBPM-WIA/tests
jsrun -n1 -r1 -g1 -c1 -brs $SCALBL_DIR/GenerateSphereTest 1896
# Create the 1200 GPU case
NRANKS=1200
echo $NRANKS
DIR=$NRANKS"p"
mkdir -p $DIR
BASEDIST="SignDist.0"
BASEID="ID.0"
for i in `seq -w 0 $NRANKS`; do idfile="$BASEID$i"; echo $idfile; cp ID.00000 $DIR/$idfile; done
for i in `seq -w 0 $NRANKS`; do distfile="$BASEDIST$i"; echo $distfile; cp SignDist.00000 $DIR/$distfile; done
# Create the 3600 GPU case
NRANKS=3600
echo $NRANKS
DIR=$NRANKS"p"
mkdir -p $DIR
BASEDIST="SignDist.0"
BASEID="ID.0"
for i in `seq -w 0 $NRANKS`; do idfile="$BASEID$i"; echo $idfile; cp ID.00000 $DIR/$idfile; done
for i in `seq -w 0 $NRANKS`; do distfile="$BASEDIST$i"; echo $distfile; cp SignDist.00000 $DIR/$distfile; done
exit;

View File

@@ -0,0 +1,26 @@
#!/bin/bash
#BSUB -P CSC275MCCLURE
#BSUB -J COLOR
#BSUB -o test-1200g.o%J
#BSUB -W 10
#BSUB -nnodes 200
##BSUB -env "all,JOB_FEATURE=NVME"
date
module load gcc cuda
#source $OLCF_SPECTRUM_MPI_ROOT/jsm_pmix/bin/export_smpi_env -gpu
#cd /ccs/home/mcclurej/summit/build/ScaLBL/example/Sph1896/
#cp Domain.in.8g Domain.in
export LBPM_WIA_DIR=$HOME/summit/build/LBPM-WIA/tests
cd /gpfs/alpinetds/csc275/scratch/mcclurej/SCALING/WEAK/1200p
jsrun -n1200 -r6 -g1 -c1 -brs --smpiargs="-gpu" $LBPM_WIA_DIR/TestCommD3Q19
exit;

View File

@@ -0,0 +1,26 @@
#!/bin/bash
#BSUB -P CSC275MCCLURE
#BSUB -J COLOR
#BSUB -o color-3600g.o%J
#BSUB -W 10
#BSUB -nnodes 600
##BSUB -env "all,JOB_FEATURE=NVME"
date
module load gcc cuda
#source $OLCF_SPECTRUM_MPI_ROOT/jsm_pmix/bin/export_smpi_env -gpu
#cd /ccs/home/mcclurej/summit/build/ScaLBL/example/Sph1896/
#cp Domain.in.8g Domain.in
export LBPM_WIA_DIR=$HOME/summit/build/LBPM-WIA/tests
cd /gpfs/alpinetds/csc275/scratch/mcclurej/SCALING/WEAK/3600p
jsrun -n3600 -r6 -g1 -c1 -brs --smpiargs="-gpu" $LBPM_WIA_DIR/TestCommD3Q19
exit;