diff --git a/homework_2/Makefile b/homework_2/Makefile index f64a3c6..1e5a38a 100644 --- a/homework_2/Makefile +++ b/homework_2/Makefile @@ -42,6 +42,7 @@ BUILD_DIR := bin OBJ_DIR := $(BUILD_DIR)/obj DEP_DIR := $(BUILD_DIR)/.dep +OUTPUT_DIR := out-rc3a # ========== Compiler settings ========== # Compiler flags for debug and release @@ -185,8 +186,8 @@ distbubbletonic: CFLAGS := $(REL_CFLAGS) -DCODE_VERSION=BUBBLETONIC distbubbletonic: CXXFLAGS := $(REL_CXXFLAGS) -DCODE_VERSION=BUBBLETONIC distbubbletonic: TARGET := distbubbletonic distbubbletonic: $(BUILD_DIR)/$(TARGET) - @mkdir -p out - cp $(BUILD_DIR)/$(TARGET) out/$(TARGET) + @mkdir -p $(OUTPUT_DIR) + cp $(BUILD_DIR)/$(TARGET) $(OUTPUT_DIR)/$(TARGET) distbitonic: CC := mpicc distbitonic: CXX := mpic++ @@ -194,8 +195,8 @@ distbitonic: CFLAGS := $(REL_CFLAGS) -DCODE_VERSION=BITONIC distbitonic: CXXFLAGS := $(REL_CXXFLAGS) -DCODE_VERSION=BITONIC distbitonic: TARGET := distbitonic distbitonic: $(BUILD_DIR)/$(TARGET) - @mkdir -p out - cp $(BUILD_DIR)/$(TARGET) out/$(TARGET) + @mkdir -p $(OUTPUT_DIR) + cp $(BUILD_DIR)/$(TARGET) $(OUTPUT_DIR)/$(TARGET) deb_distbubbletonic: CC := mpicc deb_distbubbletonic: CXX := mpic++ @@ -203,8 +204,8 @@ deb_distbubbletonic: CFLAGS := $(DEB_CFLAGS) -DCODE_VERSION=BUBBLETONIC -DDEBUG deb_distbubbletonic: CXXFLAGS := $(DEB_CXXFLAGS) -DCODE_VERSION=BUBBLETONIC -DDEBUG deb_distbubbletonic: TARGET := deb_distbubbletonic deb_distbubbletonic: $(BUILD_DIR)/$(TARGET) - @mkdir -p out - cp $(BUILD_DIR)/$(TARGET) out/$(TARGET) + @mkdir -p $(OUTPUT_DIR) + cp $(BUILD_DIR)/$(TARGET) $(OUTPUT_DIR)/$(TARGET) deb_distbitonic: CC := mpicc deb_distbitonic: CXX := mpic++ @@ -212,8 +213,8 @@ deb_distbitonic: CFLAGS := $(DEB_CFLAGS) -DCODE_VERSION=BITONIC -DDEBUG deb_distbitonic: CXXFLAGS := $(DEB_CXXFLAGS) -DCODE_VERSION=BITONIC -DDEBUG deb_distbitonic: TARGET := deb_distbitonic deb_distbitonic: $(BUILD_DIR)/$(TARGET) - @mkdir -p out - cp $(BUILD_DIR)/$(TARGET) out/$(TARGET) + @mkdir -p $(OUTPUT_DIR) + cp $(BUILD_DIR)/$(TARGET) $(OUTPUT_DIR)/$(TARGET) tests: CC := mpicc tests: CXX := mpic++ @@ -221,8 +222,8 @@ tests: CFLAGS := $(DEB_CFLAGS) -DCODE_VERSION=BITONIC -DDEBUG -DTESTING tests: CXXFLAGS := $(DEB_CXXFLAGS) -DCODE_VERSION=BITONIC -DDEBUG -DTESTING tests: TARGET := tests tests: $(BUILD_DIR)/$(TARGET) - @mkdir -p out - cp $(BUILD_DIR)/$(TARGET) out/$(TARGET) + @mkdir -p $(OUTPUT_DIR) + cp $(BUILD_DIR)/$(TARGET) $(OUTPUT_DIR)/$(TARGET) perfbitonic: CC := mpicc perfbitonic: CXX := mpic++ @@ -230,8 +231,8 @@ perfbitonic: CFLAGS := $(REL_CFLAGS) -g -DCODE_VERSION=BITONIC perfbitonic: CXXFLAGS := $(REL_CXXFLAGS) -g -DCODE_VERSION=BITONIC perfbitonic: TARGET := perfbitonic perfbitonic: $(BUILD_DIR)/$(TARGET) - @mkdir -p out - cp $(BUILD_DIR)/$(TARGET) out/$(TARGET) + @mkdir -p $(OUTPUT_DIR) + cp $(BUILD_DIR)/$(TARGET) $(OUTPUT_DIR)/$(TARGET) hpc-build: diff --git a/homework_2/hpc/Q20/N1P2T4Q20.sh b/homework_2/hpc/N1P2T4Q20.sh similarity index 92% rename from homework_2/hpc/Q20/N1P2T4Q20.sh rename to homework_2/hpc/N1P2T4Q20.sh index 410034b..a486988 100644 --- a/homework_2/hpc/Q20/N1P2T4Q20.sh +++ b/homework_2/hpc/N1P2T4Q20.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 20 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 20 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q23/N1P2T4Q23.sh b/homework_2/hpc/N1P2T4Q23.sh similarity index 92% rename from homework_2/hpc/Q23/N1P2T4Q23.sh rename to homework_2/hpc/N1P2T4Q23.sh index 219eed4..b2e21a9 100644 --- a/homework_2/hpc/Q23/N1P2T4Q23.sh +++ b/homework_2/hpc/N1P2T4Q23.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 23 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 23 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q25/N1P2T4Q25.sh b/homework_2/hpc/N1P2T4Q25.sh similarity index 92% rename from homework_2/hpc/Q25/N1P2T4Q25.sh rename to homework_2/hpc/N1P2T4Q25.sh index 6814538..806ea38 100644 --- a/homework_2/hpc/Q25/N1P2T4Q25.sh +++ b/homework_2/hpc/N1P2T4Q25.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 25 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 25 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q27/N1P2T4Q27.sh b/homework_2/hpc/N1P2T4Q27.sh similarity index 92% rename from homework_2/hpc/Q27/N1P2T4Q27.sh rename to homework_2/hpc/N1P2T4Q27.sh index 3d53fd1..234d10e 100644 --- a/homework_2/hpc/Q27/N1P2T4Q27.sh +++ b/homework_2/hpc/N1P2T4Q27.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 27 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 27 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q20/N1P4T4Q20.sh b/homework_2/hpc/N1P4T4Q20.sh similarity index 92% rename from homework_2/hpc/Q20/N1P4T4Q20.sh rename to homework_2/hpc/N1P4T4Q20.sh index c0f4eab..9c74d42 100644 --- a/homework_2/hpc/Q20/N1P4T4Q20.sh +++ b/homework_2/hpc/N1P4T4Q20.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 20 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 20 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q23/N1P4T4Q23.sh b/homework_2/hpc/N1P4T4Q23.sh similarity index 92% rename from homework_2/hpc/Q23/N1P4T4Q23.sh rename to homework_2/hpc/N1P4T4Q23.sh index c448aea..6454df5 100644 --- a/homework_2/hpc/Q23/N1P4T4Q23.sh +++ b/homework_2/hpc/N1P4T4Q23.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 23 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 23 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q25/N1P4T4Q25.sh b/homework_2/hpc/N1P4T4Q25.sh similarity index 92% rename from homework_2/hpc/Q25/N1P4T4Q25.sh rename to homework_2/hpc/N1P4T4Q25.sh index 0fa3460..f1390db 100644 --- a/homework_2/hpc/Q25/N1P4T4Q25.sh +++ b/homework_2/hpc/N1P4T4Q25.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 25 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 25 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q27/N1P4T4Q27.sh b/homework_2/hpc/N1P4T4Q27.sh similarity index 92% rename from homework_2/hpc/Q27/N1P4T4Q27.sh rename to homework_2/hpc/N1P4T4Q27.sh index 68e690d..0ff5352 100644 --- a/homework_2/hpc/Q27/N1P4T4Q27.sh +++ b/homework_2/hpc/N1P4T4Q27.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 27 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 27 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q20/N2P4T4Q20.sh b/homework_2/hpc/N2P4T4Q20.sh similarity index 92% rename from homework_2/hpc/Q20/N2P4T4Q20.sh rename to homework_2/hpc/N2P4T4Q20.sh index f3567bf..7b44c26 100644 --- a/homework_2/hpc/Q20/N2P4T4Q20.sh +++ b/homework_2/hpc/N2P4T4Q20.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 20 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 20 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q23/N2P4T4Q23.sh b/homework_2/hpc/N2P4T4Q23.sh similarity index 92% rename from homework_2/hpc/Q23/N2P4T4Q23.sh rename to homework_2/hpc/N2P4T4Q23.sh index beda60b..18a9b37 100644 --- a/homework_2/hpc/Q23/N2P4T4Q23.sh +++ b/homework_2/hpc/N2P4T4Q23.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 23 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 23 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q25/N2P4T4Q25.sh b/homework_2/hpc/N2P4T4Q25.sh similarity index 92% rename from homework_2/hpc/Q25/N2P4T4Q25.sh rename to homework_2/hpc/N2P4T4Q25.sh index d3909c3..f58d11c 100644 --- a/homework_2/hpc/Q25/N2P4T4Q25.sh +++ b/homework_2/hpc/N2P4T4Q25.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 25 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 25 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q27/N2P4T4Q27.sh b/homework_2/hpc/N2P4T4Q27.sh similarity index 92% rename from homework_2/hpc/Q27/N2P4T4Q27.sh rename to homework_2/hpc/N2P4T4Q27.sh index edf2ef9..20da8ea 100644 --- a/homework_2/hpc/Q27/N2P4T4Q27.sh +++ b/homework_2/hpc/N2P4T4Q27.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 27 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 27 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q20/N4P16T4Q20.sh b/homework_2/hpc/N4P16T4Q20.sh similarity index 92% rename from homework_2/hpc/Q20/N4P16T4Q20.sh rename to homework_2/hpc/N4P16T4Q20.sh index 6cd2d77..cd13c58 100644 --- a/homework_2/hpc/Q20/N4P16T4Q20.sh +++ b/homework_2/hpc/N4P16T4Q20.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 20 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 20 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q23/N4P16T4Q23.sh b/homework_2/hpc/N4P16T4Q23.sh similarity index 92% rename from homework_2/hpc/Q23/N4P16T4Q23.sh rename to homework_2/hpc/N4P16T4Q23.sh index 7a1f843..2bfead7 100644 --- a/homework_2/hpc/Q23/N4P16T4Q23.sh +++ b/homework_2/hpc/N4P16T4Q23.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 23 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 23 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q25/N4P16T4Q25.sh b/homework_2/hpc/N4P16T4Q25.sh similarity index 92% rename from homework_2/hpc/Q25/N4P16T4Q25.sh rename to homework_2/hpc/N4P16T4Q25.sh index 144e0b2..b60a9c4 100644 --- a/homework_2/hpc/Q25/N4P16T4Q25.sh +++ b/homework_2/hpc/N4P16T4Q25.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 25 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 25 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q27/N4P16T4Q27.sh b/homework_2/hpc/N4P16T4Q27.sh similarity index 92% rename from homework_2/hpc/Q27/N4P16T4Q27.sh rename to homework_2/hpc/N4P16T4Q27.sh index 3a636f5..0e09c21 100644 --- a/homework_2/hpc/Q27/N4P16T4Q27.sh +++ b/homework_2/hpc/N4P16T4Q27.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 27 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 27 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q20/N4P32T4Q20.sh b/homework_2/hpc/N4P32T4Q20.sh similarity index 92% rename from homework_2/hpc/Q20/N4P32T4Q20.sh rename to homework_2/hpc/N4P32T4Q20.sh index d5b79a5..5ccd5db 100644 --- a/homework_2/hpc/Q20/N4P32T4Q20.sh +++ b/homework_2/hpc/N4P32T4Q20.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 20 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 20 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q23/N4P32T4Q23.sh b/homework_2/hpc/N4P32T4Q23.sh similarity index 92% rename from homework_2/hpc/Q23/N4P32T4Q23.sh rename to homework_2/hpc/N4P32T4Q23.sh index e984005..26cef39 100644 --- a/homework_2/hpc/Q23/N4P32T4Q23.sh +++ b/homework_2/hpc/N4P32T4Q23.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 23 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 23 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q25/N4P32T4Q25.sh b/homework_2/hpc/N4P32T4Q25.sh similarity index 92% rename from homework_2/hpc/Q25/N4P32T4Q25.sh rename to homework_2/hpc/N4P32T4Q25.sh index 609b0d6..45558d1 100644 --- a/homework_2/hpc/Q25/N4P32T4Q25.sh +++ b/homework_2/hpc/N4P32T4Q25.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 25 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 25 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q27/N4P32T4Q27.sh b/homework_2/hpc/N4P32T4Q27.sh similarity index 92% rename from homework_2/hpc/Q27/N4P32T4Q27.sh rename to homework_2/hpc/N4P32T4Q27.sh index e2f7c92..c82e1db 100644 --- a/homework_2/hpc/Q27/N4P32T4Q27.sh +++ b/homework_2/hpc/N4P32T4Q27.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 27 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 27 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q20/N4P4T4Q20.sh b/homework_2/hpc/N4P4T4Q20.sh similarity index 92% rename from homework_2/hpc/Q20/N4P4T4Q20.sh rename to homework_2/hpc/N4P4T4Q20.sh index f68d0a3..3d1fc5c 100644 --- a/homework_2/hpc/Q20/N4P4T4Q20.sh +++ b/homework_2/hpc/N4P4T4Q20.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 20 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 20 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q23/N4P4T4Q23.sh b/homework_2/hpc/N4P4T4Q23.sh similarity index 92% rename from homework_2/hpc/Q23/N4P4T4Q23.sh rename to homework_2/hpc/N4P4T4Q23.sh index b5a3bb6..51fbc1e 100644 --- a/homework_2/hpc/Q23/N4P4T4Q23.sh +++ b/homework_2/hpc/N4P4T4Q23.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 23 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 23 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q25/N4P4T4Q25.sh b/homework_2/hpc/N4P4T4Q25.sh similarity index 92% rename from homework_2/hpc/Q25/N4P4T4Q25.sh rename to homework_2/hpc/N4P4T4Q25.sh index d98ee43..a2cf887 100644 --- a/homework_2/hpc/Q25/N4P4T4Q25.sh +++ b/homework_2/hpc/N4P4T4Q25.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 25 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 25 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q27/N4P4T4Q27.sh b/homework_2/hpc/N4P4T4Q27.sh similarity index 92% rename from homework_2/hpc/Q27/N4P4T4Q27.sh rename to homework_2/hpc/N4P4T4Q27.sh index 2ed2d3e..32073e4 100644 --- a/homework_2/hpc/Q27/N4P4T4Q27.sh +++ b/homework_2/hpc/N4P4T4Q27.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 27 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 27 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q20/N4P8T4Q20.sh b/homework_2/hpc/N4P8T4Q20.sh similarity index 92% rename from homework_2/hpc/Q20/N4P8T4Q20.sh rename to homework_2/hpc/N4P8T4Q20.sh index 1c9b395..20602b5 100644 --- a/homework_2/hpc/Q20/N4P8T4Q20.sh +++ b/homework_2/hpc/N4P8T4Q20.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 20 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 20 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q23/N4P8T4Q23.sh b/homework_2/hpc/N4P8T4Q23.sh similarity index 92% rename from homework_2/hpc/Q23/N4P8T4Q23.sh rename to homework_2/hpc/N4P8T4Q23.sh index 9d25cfc..faf8a4d 100644 --- a/homework_2/hpc/Q23/N4P8T4Q23.sh +++ b/homework_2/hpc/N4P8T4Q23.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 23 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 23 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q25/N4P8T4Q25.sh b/homework_2/hpc/N4P8T4Q25.sh similarity index 92% rename from homework_2/hpc/Q25/N4P8T4Q25.sh rename to homework_2/hpc/N4P8T4Q25.sh index a8b7e95..3d8aec6 100644 --- a/homework_2/hpc/Q25/N4P8T4Q25.sh +++ b/homework_2/hpc/N4P8T4Q25.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 25 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 25 --perf --validation \ No newline at end of file diff --git a/homework_2/hpc/Q27/N4P8T4Q27.sh b/homework_2/hpc/N4P8T4Q27.sh similarity index 92% rename from homework_2/hpc/Q27/N4P8T4Q27.sh rename to homework_2/hpc/N4P8T4Q27.sh index fc756fd..975c0bc 100644 --- a/homework_2/hpc/Q27/N4P8T4Q27.sh +++ b/homework_2/hpc/N4P8T4Q27.sh @@ -25,4 +25,4 @@ export UCX_WARN_UNUSED_ENV_VARS=n # Suppress CUDA-aware support is disabled warning export OMPI_MCA_opal_warn_on_missing_libcuda=0 -srun ./out/distbitonic -q 27 --perf --validation \ No newline at end of file +srun ./out-rc3a/distbitonic -q 27 --perf --validation \ No newline at end of file