disable hwloc

This commit is contained in:
Yann Dupont 2023-04-12 23:01:31 +02:00
parent 60282930b2
commit fb71bf36f5

View file

@ -37,7 +37,7 @@
"-DGMX_EXTERNAL_LAPACK=on"
"-DGMX_EXTERNAL_TNG=on"
"-DGMX_EXTERNAL_ZLIB=on"
"-DGMX_HWLOC=ON"
; "-DGMX_HWLOC=ON"
"-DGMX_GPU=CUDA"
(string-append "-DCUDA_TOOLKIT_ROOT_DIR=" #$(this-package-input "cuda-toolkit"))
"-DGMX_EXTERNAL_TINYXML2=on"
@ -71,9 +71,9 @@
(substitute* "src/gromacs/hardware/tests/hardwaretopology.cpp"
(("TEST\\(HardwareTopologyTest, HwlocExecute\\)")
"void __guix_disabled()"))
(substitute* "src/gromacs/hardware/tests/hardwaretopology.cpp"
(("TEST\\(HardwareTopologyTest, NumaCacheSelfconsistency\\)")
"void __guix_disabled()"))
; (substitute* "src/gromacs/hardware/tests/hardwaretopology.cpp"
; (("TEST\\(HardwareTopologyTest, NumaCacheSelfconsistency\\)")
; "void __guix_disabled()"))
@ -82,5 +82,7 @@
(inputs
(modify-inputs (package-inputs gromacs)
(append cuda hwloc))))
(append cuda
;hwloc
))))
)