Skip to content

Commit

Permalink
Remove comments from run script
Browse files Browse the repository at this point in the history
  • Loading branch information
janciesko committed Feb 21, 2024
1 parent 3289ed3 commit c60152d
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions benchmarks/access_overhead/scripts/run_over_size_p2p.sh
Expand Up @@ -16,38 +16,38 @@ echo $FILENAME
echo "name,type,N,size,iters,time,gups,bw" | tee $FILENAME
VARS0="--bind-to core --map-by socket -x CUDA_VISIBLE_DEVICES=0,2"
VARS1=" -x UCX_WARN_UNUSED_ENV_VARS=n -x HCOLL_RCACHE=^ucs -x \
LD_LIBRARY_PATH=/projects/ppc64le-pwr9-rhel8/tpls/cuda/12.0.0/gcc/12.2.0/base/rantbbm/lib64/:$LD_LIBRARY_PATH -x NVSHMEM_SYMMETRIC_SIZE=10730741824"
LD_LIBRARY_PATH=/projects/ppc64le-pwr9-rhel8/tpls/cuda/12.0.0/gcc/12.2.0/base/rantbbm/lib64/:$LD_LIBRARY_PATH" # -x NVSHMEM_SYMMETRIC_SIZE=10730741824"

#MPI + Kokkos
let SIZE=$DEFAULT_SIZE
#for S in $(seq 1 21); do
# for reps in $(seq 1 3); do
# mpirun -np 2 $VARS0 $VARS1 $VARS2 -host $HOST ./$BENCHMARK -N $SIZE -I $ITERS -M 0 | tee -a $FILENAME
# done
# let SIZE=$SIZE*2
#done
for S in $(seq 1 21); do
for reps in $(seq 1 3); do
mpirun -np 2 $VARS0 $VARS1 $VARS2 -host $HOST ./$BENCHMARK -N $SIZE -I $ITERS -M 0 | tee -a $FILENAME
done
let SIZE=$SIZE*2
done

#Cuda-ware MPI + Kokkos
let SIZE=$DEFAULT_SIZE
#for S in $(seq 1 21); do
# for reps in $(seq 1 3); do
# mpirun -np 2 $VARS0 $VARS1 $VARS2 -host $HOST ./$BENCHMARK -N $SIZE -I $ITERS -M 1 | tee -a $FILENAME
# done
# let SIZE=$SIZE*2
#done
for S in $(seq 1 21); do
for reps in $(seq 1 3); do
mpirun -np 2 $VARS0 $VARS1 $VARS2 -host $HOST ./$BENCHMARK -N $SIZE -I $ITERS -M 1 | tee -a $FILENAME
done
let SIZE=$SIZE*2
done

#Kokkos Remote Spaces
#let SIZE=$DEFAULT_SIZE
#for S in $(seq 1 21); do
# for reps in $(seq 1 3); do
# mpirun -np 2 $VARS0 $VARS1 $VARS2 -host $HOST ./$BENCHMARK -N $SIZE -I $ITERS -M 2 | tee -a $FILENAME
# done
# let SIZE=$SIZE*2
#done
let SIZE=$DEFAULT_SIZE
for S in $(seq 1 21); do
for reps in $(seq 1 3); do
mpirun -np 2 $VARS0 $VARS1 $VARS2 -host $HOST ./$BENCHMARK -N $SIZE -I $ITERS -M 2 | tee -a $FILENAME
done
let SIZE=$SIZE*2
done

#Kokkos Remote Spaces + LDC
let SIZE=$DEFAULT_SIZE
for S in $(seq 5); do
for S in $(seq 1 5); do
for reps in $(seq 1 3); do
mpirun -np 2 $VARS0 $VARS1 $VARS2 -host $HOST ./$BENCHMARK -N $SIZE -I $ITERS -M 3 | tee -a $FILENAME
done
Expand Down

0 comments on commit c60152d

Please sign in to comment.