diff --git a/CHANGE_LOG b/CHANGE_LOG index 0d557e25841..98456867423 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -1,3 +1,21 @@ +Version 0.56.4 (03 November, 2022) +---------------------------------- + +This is a bugfix release to fix a regression in the CUDA target in relation to +the ``.view()`` method on CUDA device arrays that is present when using NumPy +version 1.23.0 or later. + +Pull-Requests: + +* PR `#8537 `_: Make ol_compatible_view accessible on all targets (`gmarkall `_) +* PR `#8552 `_: Update version support table for 0.56.4. (`stuartarchibald `_) +* PR `#8553 `_: Update CHANGE_LOG for 0.56.4 (`stuartarchibald `_) + +Authors: + +* `gmarkall `_ +* `stuartarchibald `_ + Version 0.56.3 (13 October, 2022) --------------------------------- diff --git a/docs/source/user/installing.rst b/docs/source/user/installing.rst index f4520025720..d06a91ee170 100644 --- a/docs/source/user/installing.rst +++ b/docs/source/user/installing.rst @@ -278,6 +278,8 @@ information. +===========+==============+===========================+============================+==============================+===================+=============================+ | 0.57.x | TBC | 3.8.x <= version < 3.12 | 1.19 <= version < 1.24 | 0.40.x | 11.x | 2021.x | +-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ +| 0.56.4 | 2022-11-03 | 3.7.x <= version < 3.11 | 1.18 <= version < 1.24 | 0.39.x | 11.x | 2021.x | ++-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ | 0.56.3 | 2022-10-13 | 3.7.x <= version < 3.11 | 1.18 <= version < 1.24 | 0.39.x | 11.x | 2021.x | +-----------+--------------+---------------------------+----------------------------+------------------------------+-------------------+-----------------------------+ | 0.56.2 | 2022-09-01 | 3.7.x <= version < 3.11 | 1.18 <= version < 1.24 | 0.39.x | 11.x | 2021.x | diff --git a/numba/np/arrayobj.py b/numba/np/arrayobj.py index 8b57c38f1f5..278d9a7f78d 100644 --- a/numba/np/arrayobj.py +++ b/numba/np/arrayobj.py @@ -2420,7 +2420,7 @@ def _compatible_view(a, dtype): pass -@overload(_compatible_view) +@overload(_compatible_view, target='generic') def ol_compatible_view(a, dtype): """Determines if the array and dtype are compatible for forming a view.""" # NOTE: NumPy 1.23+ uses this check.