Skip to content

Commit b4ba18b

Browse files
authored
Merge pull request #118 from bedroge/scipy_bundle_2024a_tests
Ignore failing scipy tests on neoverse_v1 and a64fx for SciPy-bundle 2024.05
2 parents 0373138 + 9b9b9c1 commit b4ba18b

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

eb_hooks.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,8 @@ def pre_test_hook_ignore_failing_tests_SciPybundle(self, *args, **kwargs):
11481148
FAILED optimize/tests/test_linprog.py::TestLinprogIPSparse::test_bug_6139 - A...
11491149
FAILED optimize/tests/test_linprog.py::TestLinprogIPSparsePresolve::test_bug_6139
11501150
= 2 failed, 30554 passed, 2064 skipped, 10992 deselected, 76 xfailed, 7 xpassed, 40 warnings in 380.27s (0:06:20) =
1151-
In versions 2023.02 + 2023.07 + 2023.11 on neoverse_v1, 2 failing tests in scipy (versions 1.10.1, 1.11.1, 1.11.4):
1151+
In versions 2023.02 + 2023.07 + 2023.11 + 2024.05 on neoverse_v1, 2 failing tests in scipy (versions 1.10.1, 1.11.1,
1152+
1.11.4, 1.13.1):
11521153
FAILED scipy/spatial/tests/test_distance.py::TestPdist::test_pdist_correlation_iris
11531154
FAILED scipy/spatial/tests/test_distance.py::TestPdist::test_pdist_correlation_iris_float32
11541155
= 2 failed, 54409 passed, 3016 skipped, 223 xfailed, 13 xpassed, 10917 warnings in 892.04s (0:14:52) =
@@ -1158,6 +1159,11 @@ def pre_test_hook_ignore_failing_tests_SciPybundle(self, *args, **kwargs):
11581159
FAILED scipy/spatial/tests/test_distance.py::TestPdist::test_pdist_correlation_iris
11591160
FAILED scipy/spatial/tests/test_distance.py::TestPdist::test_pdist_correlation_iris_float32
11601161
= 4 failed, 54407 passed, 3016 skipped, 223 xfailed, 13 xpassed, 10917 warnings in 6068.43s (1:41:08) =
1162+
In version 2024.05 on a64fx, 3 failing tests in scipy (version 1.13.1):
1163+
FAILED scipy/optimize/tests/test_minimize_constrained.py::TestTrustRegionConstr::test_list_of_problems
1164+
FAILED scipy/spatial/tests/test_distance.py::TestPdist::test_pdist_correlation_iris
1165+
FAILED scipy/spatial/tests/test_distance.py::TestPdist::test_pdist_correlation_iris_float32
1166+
= 3 failed, 61426 passed, 2620 skipped, 244 xfailed, 15 xpassed, 47 warnings in 6641.17s (1:50:41) =
11611167
In version 2023.07 + 2023.11 on grace, 2 failing tests in scipy (versions 1.11.1, 1.11.4):
11621168
FAILED scipy/optimize/tests/test_linprog.py::TestLinprogIPSparse::test_bug_6139
11631169
FAILED scipy/optimize/tests/test_linprog.py::TestLinprogIPSparsePresolve::test_bug_6139
@@ -1213,8 +1219,8 @@ def pre_test_hook_ignore_failing_tests_SciPybundle(self, *args, **kwargs):
12131219
(in previous versions we were not as strict yet on the numpy/SciPy tests)
12141220
"""
12151221
cpu_target = get_eessi_envvar('EESSI_SOFTWARE_SUBDIR')
1216-
scipy_bundle_versions_nv1 = ('2021.10', '2023.02', '2023.07', '2023.11')
1217-
scipy_bundle_versions_a64fx = ('2023.02', '2023.07', '2023.11')
1222+
scipy_bundle_versions_nv1 = ('2021.10', '2023.02', '2023.07', '2023.11', '2024.05')
1223+
scipy_bundle_versions_a64fx = ('2023.02', '2023.07', '2023.11', '2024.05')
12181224
scipy_bundle_versions_nvidia_grace = ('2023.02', '2023.07', '2023.11')
12191225
if self.name == 'SciPy-bundle':
12201226
if cpu_target == CPU_TARGET_NEOVERSE_V1 and self.version in scipy_bundle_versions_nv1:

0 commit comments

Comments
 (0)