From 843e67e48017c8c0e2e84f6e2944eb75b400afac Mon Sep 17 00:00:00 2001 From: Jade Abraham Date: Fri, 22 Nov 2024 12:25:07 -0800 Subject: [PATCH] remove unused test configs Signed-off-by: Jade Abraham --- util/cron/common-slurm-gasnet-cray-cs.bash | 23 --------------- util/cron/test-gpu-cpu.bash | 16 ---------- util/cron/test-gpu-cuda.bash | 16 ---------- util/cron/test-gpu-cuda.gasnet.bash | 16 ---------- util/cron/test-gpu-cuda.interop.bash | 17 ----------- util/cron/test-gpu-cuda.specialization.bash | 18 ------------ util/cron/test-gpu-cuda.um.bash | 17 ----------- util/cron/test-gpu-cuda.um.gasnet.bash | 17 ----------- util/cron/test-ofi.bash | 23 --------------- util/cron/test-perf.gpu-cuda.bash | 28 ------------------ util/cron/test-perf.gpu-cuda.um.bash | 29 ------------------- .../cron/test-slurm-gasnet-ibv.c-backend.bash | 16 ---------- util/cron/test-slurm-gasnet-ibv.fast.bash | 17 ----------- util/cron/test-slurm-gasnet-ibv.large.bash | 17 ----------- util/cron/test-slurm-gasnet-mpi.bash | 14 --------- 15 files changed, 284 deletions(-) delete mode 100644 util/cron/common-slurm-gasnet-cray-cs.bash delete mode 100755 util/cron/test-gpu-cpu.bash delete mode 100755 util/cron/test-gpu-cuda.bash delete mode 100755 util/cron/test-gpu-cuda.gasnet.bash delete mode 100755 util/cron/test-gpu-cuda.interop.bash delete mode 100755 util/cron/test-gpu-cuda.specialization.bash delete mode 100755 util/cron/test-gpu-cuda.um.bash delete mode 100755 util/cron/test-gpu-cuda.um.gasnet.bash delete mode 100755 util/cron/test-ofi.bash delete mode 100755 util/cron/test-perf.gpu-cuda.bash delete mode 100755 util/cron/test-perf.gpu-cuda.um.bash delete mode 100755 util/cron/test-slurm-gasnet-ibv.c-backend.bash delete mode 100755 util/cron/test-slurm-gasnet-ibv.fast.bash delete mode 100755 util/cron/test-slurm-gasnet-ibv.large.bash delete mode 100755 util/cron/test-slurm-gasnet-mpi.bash diff --git a/util/cron/common-slurm-gasnet-cray-cs.bash b/util/cron/common-slurm-gasnet-cray-cs.bash deleted file mode 100644 index a7bfc47157f0..000000000000 --- a/util/cron/common-slurm-gasnet-cray-cs.bash +++ /dev/null @@ -1,23 +0,0 @@ -# -# Configure environment for -# multi-node, multi-locale testing on a cray-cs with slurm-gasnetrun_* -# launcher. - -# This should be sourced by other scripts that wish to make use of the variables -# set here. - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) - -source $CWD/common.bash -source $CWD/common-cray-cs.bash y - -export CHPL_COMM=gasnet - -unset CHPL_START_TEST_ARGS -nightly_args="${nightly_args} -no-buildcheck" - -# host-specific -export CHPL_TARGET_CPU=native -export GASNET_PHYSMEM_MAX=16G -export GASNET_PHYSMEM_NOPROBE=1 -export GASNET_QUIET=Y diff --git a/util/cron/test-gpu-cpu.bash b/util/cron/test-gpu-cpu.bash deleted file mode 100755 index faa37af0a5c5..000000000000 --- a/util/cron/test-gpu-cpu.bash +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash -# -# GPU native testing on a Cray CS -# * cpu-as-device mode -# * CHPL_COMM=none - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -export CHPL_GPU=cpu -export CHPL_COMM=none -export CHPL_GPU_NO_CPU_MODE_WARNING=y - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="gpu-cpu" -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-gpu-cuda.bash b/util/cron/test-gpu-cuda.bash deleted file mode 100755 index 3d01baa9f297..000000000000 --- a/util/cron/test-gpu-cuda.bash +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash -# -# GPU native testing on a Cray CS (using none for CHPL_COMM) - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -module load cudatoolkit/11.3 - -export CHPL_GPU=nvidia -export CHPL_COMM=none -export CHPL_LAUNCHER_PARTITION=stormP100 - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="gpu-cuda" -$CWD/nightly -cron -blog ${nightly_args} diff --git a/util/cron/test-gpu-cuda.gasnet.bash b/util/cron/test-gpu-cuda.gasnet.bash deleted file mode 100755 index b50ae66629f7..000000000000 --- a/util/cron/test-gpu-cuda.gasnet.bash +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash -# -# GPU native testing on a Cray CS (using gasnet for CHPL_COMM) - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -module load cudatoolkit/11.3 - -export CHPL_GPU=nvidia -export CHPL_COMM=gasnet -export CHPL_LAUNCHER_PARTITION=stormP100 - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="gpu-cuda.gasnet" -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-gpu-cuda.interop.bash b/util/cron/test-gpu-cuda.interop.bash deleted file mode 100755 index 2ce538563149..000000000000 --- a/util/cron/test-gpu-cuda.interop.bash +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# -# GPU interop testing on a Cray CS - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="gpu-cuda.interop" - -export CHPL_COMM_SUBSTRATE=ibv - -module load cudatoolkit -export CHPL_TEST_GPU=true -export CHPL_LAUNCHER_PARTITION=stormP100 -export CHPL_NIGHTLY_TEST_DIRS="gpu/interop/" - -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-gpu-cuda.specialization.bash b/util/cron/test-gpu-cuda.specialization.bash deleted file mode 100755 index 4dcabb187ecd..000000000000 --- a/util/cron/test-gpu-cuda.specialization.bash +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash -# -# GPU native testing on a Cray CS (using none for CHPL_COMM) - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -module load cudatoolkit/11.3 - -export CHPL_GPU=nvidia -export CHPL_COMM=none -export CHPL_LAUNCHER_PARTITION=stormP100 - -export CHPL_GPU_SPECIALIZATION=y - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="gpu-cuda.specialization" -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-gpu-cuda.um.bash b/util/cron/test-gpu-cuda.um.bash deleted file mode 100755 index 26dee4f4531a..000000000000 --- a/util/cron/test-gpu-cuda.um.bash +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# -# GPU native testing on a Cray CS (using none for CHPL_COMM) - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -module load cudatoolkit/11.3 - -export CHPL_GPU=nvidia -export CHPL_COMM=none -export CHPL_GPU_MEM_STRATEGY=unified_memory -export CHPL_LAUNCHER_PARTITION=stormP100 - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="gpu-cuda.um" -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-gpu-cuda.um.gasnet.bash b/util/cron/test-gpu-cuda.um.gasnet.bash deleted file mode 100755 index 087cf50732f2..000000000000 --- a/util/cron/test-gpu-cuda.um.gasnet.bash +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# -# GPU native testing on a Cray CS (using gasnet for CHPL_COMM) - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -module load cudatoolkit/11.3 - -export CHPL_GPU=nvidia -export CHPL_COMM=gasnet -export CHPL_LAUNCHER_PARTITION=stormP100 -export CHPL_GPU_MEM_STRATEGY=unified_memory - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="gpu-cuda.um.gasnet" -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-ofi.bash b/util/cron/test-ofi.bash deleted file mode 100755 index 4af6cbbf200c..000000000000 --- a/util/cron/test-ofi.bash +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash -# -# Test comm=ofi, functionally. - -CWD=$(cd $(dirname $0) ; pwd) - -source $CWD/common.bash -source $CWD/common-cray-cs.bash -source $CWD/common-ofi.bash || \ - ( echo "Could not set up comm=ofi testing." && exit 1 ) - -if [[ $($CHPL_HOME/util/chplenv/chpl_platform.py --target) == cray-cs ]] ; then - # Need fixed heap on CS systems. - # As we test on more targets we might need to adjust this to be a - # check against the expected libfabric provider. - export CHPL_RT_MAX_HEAP_SIZE=16g -fi - -nightly_args="${nightly_args} -no-buildcheck" - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="ofi" - -$CWD/nightly -cron -hellos ${nightly_args} diff --git a/util/cron/test-perf.gpu-cuda.bash b/util/cron/test-perf.gpu-cuda.bash deleted file mode 100755 index 1d7a1bfaf1f6..000000000000 --- a/util/cron/test-perf.gpu-cuda.bash +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env bash -# -# Run GPU performance tests - -CWD=$(cd $(dirname $0) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -module load cudatoolkit/11.3 - -export CHPL_GPU=nvidia -export CHPL_LAUNCHER_PARTITION=stormP100 - -export CHPL_COMM=none - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="perf.gpu-cuda" - -export CHPL_TEST_PERF_CONFIG_NAME="1-node-p100" -source $CWD/common-native-gpu-perf.bash -# make sure this comes after setting SUBDIR (set by native-gpu-perf) and -# CONFIG_NAME -source $CWD/common-perf.bash -export CHPL_TARGET_CPU=native - - -nightly_args="${nightly_args} -startdate 07/15/22" - -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-perf.gpu-cuda.um.bash b/util/cron/test-perf.gpu-cuda.um.bash deleted file mode 100755 index 6a2977ddeb6c..000000000000 --- a/util/cron/test-perf.gpu-cuda.um.bash +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash -# -# Run GPU performance tests - -CWD=$(cd $(dirname $0) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-native-gpu.bash - -module load cudatoolkit/11.3 - -export CHPL_GPU=nvidia -export CHPL_LAUNCHER_PARTITION=stormP100 - -export CHPL_COMM=none -export CHPL_GPU_MEM_STRATEGY=unified_memory - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="perf.gpu-cuda.um" - -export CHPL_TEST_PERF_CONFIG_NAME="1-node-p100" -source $CWD/common-native-gpu-perf.bash -# make sure this comes after setting SUBDIR (set by native-gpu-perf) and -# CONFIG_NAME -source $CWD/common-perf.bash -export CHPL_TARGET_CPU=native - -SHORT_NAME=um -nightly_args="${nightly_args} -performance-description $SHORT_NAME -performance-configs default:v,$SHORT_NAME:v -sync-dir-suffix $SHORT_NAME" -nightly_args="${nightly_args} -startdate 07/15/22" -$CWD/nightly -cron ${nightly_args} diff --git a/util/cron/test-slurm-gasnet-ibv.c-backend.bash b/util/cron/test-slurm-gasnet-ibv.c-backend.bash deleted file mode 100755 index bb15492d001e..000000000000 --- a/util/cron/test-slurm-gasnet-ibv.c-backend.bash +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash -# -# Multi-node, multi-locale testing on a cray-cs with slurm-gasnetrun_ibv -# launcher: -# test gasnet configuration with CHPL_LLVM=none & CHPL_TARGET_COMPILER=gnu -# test against "examples" - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash -source $CWD/common-c-backend.bash - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="slurm-gasnet-ibv.c-backend" - -export CHPL_COMM_SUBSTRATE=ibv - -$CWD/nightly -cron -examples ${nightly_args} < /dev/null diff --git a/util/cron/test-slurm-gasnet-ibv.fast.bash b/util/cron/test-slurm-gasnet-ibv.fast.bash deleted file mode 100755 index 437a13fd72b5..000000000000 --- a/util/cron/test-slurm-gasnet-ibv.fast.bash +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# -# Multi-node, multi-locale testing on a cray-cs cluster with slurm-gasnetrun_ibv -# launcher: -# test gasnet (segment fast) against "examples" - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="slurm-gasnet-ibv.fast" - -export CHPL_COMM_SUBSTRATE=ibv - -# Test a GASNet compile using the fast segment -export CHPL_GASNET_SEGMENT=fast - -$CWD/nightly -cron -examples ${nightly_args} < /dev/null diff --git a/util/cron/test-slurm-gasnet-ibv.large.bash b/util/cron/test-slurm-gasnet-ibv.large.bash deleted file mode 100755 index bcb07fa8c919..000000000000 --- a/util/cron/test-slurm-gasnet-ibv.large.bash +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# -# Multi-node, multi-locale testing on a cray-cs cluster with slurm-gasnetrun_ibv -# launcher: -# test gasnet (segment large) against "examples" - -CWD=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="slurm-gasnet-ibv.large" - -export CHPL_COMM_SUBSTRATE=ibv - -# Test a GASNet compile using the large segment -export CHPL_GASNET_SEGMENT=large - -$CWD/nightly -cron -examples ${nightly_args} < /dev/null diff --git a/util/cron/test-slurm-gasnet-mpi.bash b/util/cron/test-slurm-gasnet-mpi.bash deleted file mode 100755 index b71aa76e4df1..000000000000 --- a/util/cron/test-slurm-gasnet-mpi.bash +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -# -# Test gasnet mpi against hellos on cray-cs. - -CWD=$(cd $(dirname $0) ; pwd) -source $CWD/common-slurm-gasnet-cray-cs.bash - -export CHPL_NIGHTLY_TEST_CONFIG_NAME="slurm-gasnet-mpi" - -# setup for mpi -module load openmpi/gcc -export CHPL_COMM_SUBSTRATE=mpi - -$CWD/nightly -cron -hellos ${nightly_args}