2023-01-01 13:32:23 +00:00
|
|
|
---
|
|
|
|
numba/tests/test_parfors.py | 5 +++--
|
|
|
|
numba/tests/test_parfors_passes.py | 1 +
|
|
|
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
|
2024-02-03 07:06:15 +00:00
|
|
|
Index: numba-0.59.0/numba/tests/test_parfors.py
|
2023-05-26 13:36:43 +00:00
|
|
|
===================================================================
|
2024-02-03 07:06:15 +00:00
|
|
|
--- numba-0.59.0.orig/numba/tests/test_parfors.py
|
|
|
|
+++ numba-0.59.0/numba/tests/test_parfors.py
|
|
|
|
@@ -1198,6 +1198,7 @@ class TestParforNumPy(TestParforsBase):
|
2021-11-18 20:40:38 +00:00
|
|
|
self.check_variants(test_impl2, data_gen)
|
|
|
|
self.count_parfors_variants(test_impl2, data_gen)
|
2020-02-21 12:35:24 +00:00
|
|
|
|
|
|
|
+ @unittest.skip("Fails on type check in OBS")
|
|
|
|
def test_ndarray_fill(self):
|
|
|
|
def test_impl(x):
|
|
|
|
x.fill(7.0)
|
2024-02-03 07:06:15 +00:00
|
|
|
@@ -4639,7 +4640,7 @@ class TestParforsVectorizer(TestPrangeBa
|
2023-05-26 13:36:43 +00:00
|
|
|
|
|
|
|
return asm
|
2020-04-27 19:40:16 +00:00
|
|
|
|
|
|
|
- @linux_only
|
2021-11-18 20:40:38 +00:00
|
|
|
+ @unittest.skip("Our x86_64 asm is most probably different from the upstream one.")
|
2024-02-03 07:06:15 +00:00
|
|
|
@TestCase.run_test_in_subprocess
|
2020-04-27 19:40:16 +00:00
|
|
|
def test_vectorizer_fastmath_asm(self):
|
|
|
|
""" This checks that if fastmath is set and the underlying hardware
|
2024-02-03 07:06:15 +00:00
|
|
|
@@ -4680,7 +4681,7 @@ class TestParforsVectorizer(TestPrangeBa
|
2020-04-27 19:40:16 +00:00
|
|
|
# check no zmm addressing is present
|
|
|
|
self.assertTrue('zmm' not in v)
|
|
|
|
|
|
|
|
- @linux_only
|
2021-11-18 20:40:38 +00:00
|
|
|
+ @unittest.skip("Our x86_64 asm is most probably different from the upstream one.")
|
2024-02-03 07:06:15 +00:00
|
|
|
@TestCase.run_test_in_subprocess(envvars={'NUMBA_BOUNDSCHECK': '0'})
|
2020-04-27 19:40:16 +00:00
|
|
|
def test_unsigned_refusal_to_vectorize(self):
|
|
|
|
""" This checks that if fastmath is set and the underlying hardware
|
2024-02-03 07:06:15 +00:00
|
|
|
Index: numba-0.59.0/numba/tests/test_parfors_passes.py
|
2023-05-26 13:36:43 +00:00
|
|
|
===================================================================
|
2024-02-03 07:06:15 +00:00
|
|
|
--- numba-0.59.0.orig/numba/tests/test_parfors_passes.py
|
|
|
|
+++ numba-0.59.0/numba/tests/test_parfors_passes.py
|
|
|
|
@@ -514,6 +514,7 @@ class TestConvertLoopPass(BaseTest):
|
2020-04-27 19:40:16 +00:00
|
|
|
str(raises.exception),
|
|
|
|
)
|
|
|
|
|
|
|
|
+ @unittest.skip("Fails on type check in OBS")
|
|
|
|
def test_init_prange(self):
|
|
|
|
def test_impl():
|
|
|
|
n = 20
|
2024-02-03 07:06:15 +00:00
|
|
|
Index: numba-0.59.0/numba/tests/test_cli.py
|
2023-01-03 18:24:04 +00:00
|
|
|
===================================================================
|
2024-02-03 07:06:15 +00:00
|
|
|
--- numba-0.59.0.orig/numba/tests/test_cli.py
|
|
|
|
+++ numba-0.59.0/numba/tests/test_cli.py
|
2023-01-03 18:24:04 +00:00
|
|
|
@@ -264,6 +264,7 @@ class TestGDBCLIInfoBrokenGdbs(TestCase)
|
|
|
|
self.assertIn("No such file or directory", stdout)
|
|
|
|
self.assertIn(path, stdout)
|
|
|
|
|
|
|
|
+ @unittest.skip("Fails on type check in OBS")
|
|
|
|
def test_nonsense_gdb_binary(self):
|
|
|
|
# Tests that a nonsense binary specified as gdb it picked up ok
|
|
|
|
env = os.environ.copy()
|