Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix sigabrt in parfors tests #9568

Merged
merged 2 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/release/0.60.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ Pull-Requests:
* PR `#9549 <https://github.com/numba/numba/pull/9549>`_: Make new_style the default error capturing mode (`gmarkall <https://github.com/gmarkall>`_ `sklam <https://github.com/sklam>`_)
* PR `#9558 <https://github.com/numba/numba/pull/9558>`_: Added 0.60.0 release notes (`kc611 <https://github.com/kc611>`_)
* PR `#9559 <https://github.com/numba/numba/pull/9559>`_: Update version support table 0.60 (`esc <https://github.com/esc>`)
* PR `#9568 <https://github.com/numba/numba/pull/9568>`_: fix sigabrt in parfors tests (`esc <https://github.com/esc>` `stuartarchibald <https://github.com/stuartarchibald>`_)

Authors:
~~~~~~~~
Expand Down
4 changes: 2 additions & 2 deletions numba/tests/test_parfors.py
Original file line number Diff line number Diff line change
Expand Up @@ -4444,7 +4444,7 @@ def test_impl(inputs):
return outputs[0][1][0]

N = config.NUMBA_NUM_THREADS + 1
self.prange_tester(test_impl, [Dict.empty(key_type=types.int64, value_type=types.float64) for i in range(N)])
self.prange_tester(test_impl, [Dict.empty(key_type=types.int64, value_type=types.float64) for i in range(N)], patch_instance=[1])

def test_call_hoisting(self):
# issue9529
Expand All @@ -4458,7 +4458,7 @@ def test_impl(inputs):
return outputs[0][1][0]

N = config.NUMBA_NUM_THREADS + 1
self.prange_tester(test_impl, [Dict.empty(key_type=types.int64, value_type=types.float64) for i in range(N)])
self.prange_tester(test_impl, [Dict.empty(key_type=types.int64, value_type=types.float64) for i in range(N)], patch_instance=[1])

def test_record_array_setitem(self):
# issue6704
Expand Down