From d1b8b21f94455b1b94213ca31c82e742017b3d8b Mon Sep 17 00:00:00 2001 From: "Balos, Cody, J" Date: Fri, 25 Oct 2024 11:51:54 -0700 Subject: [PATCH] remove commented out code --- scripts/spack/packages/sundials/package.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/spack/packages/sundials/package.py b/scripts/spack/packages/sundials/package.py index edb4d34c19..2257576317 100644 --- a/scripts/spack/packages/sundials/package.py +++ b/scripts/spack/packages/sundials/package.py @@ -694,13 +694,10 @@ def initconfig_mpi_entries(self): ) if "scheduler=flux" in spec: entries.append(cmake_cache_string("SUNDIALS_SCHEDULER_COMMAND", "flux run")) - # entries.append(cmake_cache_string("SUNDIALS_TEST_MPIRUN_COMMAND", "flux run")) if "scheduler=slurm" in spec: entries.append(cmake_cache_string("SUNDIALS_SCHEDULER_COMMAND", "srun")) - # entries.append(cmake_cache_string("SUNDIALS_TEST_MPIRUN_COMMAND", "srun")) if "scheduler=lsf" in spec: entries.append(cmake_cache_string("SUNDIALS_SCHEDULER_COMMAND", "jsrun")) - # entries.append(cmake_cache_string("SUNDIALS_TEST_MPIRUN_COMMAND", "jsrun")) return entries @@ -723,8 +720,6 @@ def initconfig_hardware_entries(self): entries.extend( [ self.cache_option_from_variant("ENABLE_HIP", "rocm"), - # cmake_cache_path("CMAKE_C_COMPILER", spec["llvm-amdgpu"].prefix.bin.clang), - # cmake_cache_path("CMAKE_CXX_COMPILER", spec["hip"].hipcc), cmake_cache_path("HIP_PATH", spec["hip"].prefix), cmake_cache_path("HIP_DIR", spec["hip"].prefix.cmake), cmake_cache_path("HIP_CLANG_INCLUDE_PATH", spec["llvm-amdgpu"].prefix.include),