summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain GARBAGE <romain.garbage@inria.fr>2026-02-17 14:07:05 +0100
committerRomain GARBAGE <romain.garbage@inria.fr>2026-02-19 11:25:51 +0100
commit62da9848acc057b7c030dce5d1540a3ce3cc7d89 (patch)
treef1f0fa99a2b1d49b7135b82f04a77c69d24bf85c
parent6516fabdc614b663beb69c70f8d73cd0ba1c928c (diff)
algebra: chameleon: Exclude tests added in version 1.4.
These tests are not relevant for testing basic MPI related functionality, they test custom distribution of tiles on MPI ranks. * guix-science/packages/algebra.scm (chameleon): Exclude tests added in version 1.4.
-rw-r--r--guix-science/packages/algebra.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/guix-science/packages/algebra.scm b/guix-science/packages/algebra.scm
index b448e43..f48b7e8 100644
--- a/guix-science/packages/algebra.scm
+++ b/guix-science/packages/algebra.scm
@@ -126,7 +126,13 @@ SVML, SLEEF, and XSIMD;
126 (setenv "OPENBLAS_NUM_THREADS" "1")))) 126 (setenv "OPENBLAS_NUM_THREADS" "1"))))
127 ;; Restrict tests to MPI/simple precision for CI resource 127 ;; Restrict tests to MPI/simple precision for CI resource
128 ;; savings. 128 ;; savings.
129 #:test-exclude "test_shm_d|test_shm_z|test_mpi_d|test_mpi_z|getrf_ppiv")) 129 #:test-exclude (string-join '("test_shm_d"
130 "test_shm_z"
131 "test_mpi_d"
132 "test_mpi_z"
133 "getrf_ppiv"
134 "test_cdist")
135 "|")))
130 (inputs (list openblas starpu openmpi)) 136 (inputs (list openblas starpu openmpi))
131 (native-inputs (list pkg-config gfortran python)) 137 (native-inputs (list pkg-config gfortran python))
132 (home-page "https://gitlab.inria.fr/solverstack/chameleon") 138 (home-page "https://gitlab.inria.fr/solverstack/chameleon")