Skip to content

Commit f0a3613

Browse files
Merge master into impl_matrix_transpose
2 parents c3c0ec5 + 927d898 commit f0a3613

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
### Fixed
1414

1515

16-
## [0.16.0] - 09/DD/2024
16+
## [0.16.0] - 10/14/2024
1717

1818
This release reaches an important milestone by making offloading fully asynchronous. Calls to `dpnp` submit tasks for execution to DPC++ runtime and return without waiting for execution of these tasks to finish. The sequential semantics a user comes to expect from execution of Python script is preserved though.
1919
In addition, this release completes implementation of `dpnp.fft` module and adds several new array manipulation, indexing and elementwise routines. Moreover, it adds support to build `dpnp` for Nvidia GPUs.
@@ -117,6 +117,7 @@ In addition, this release completes implementation of `dpnp.fft` module and adds
117117
* Updated the test suit for `dpnp.fft` module [#2071](https://github.com/IntelPython/dpnp/pull/2071)
118118
* Reworked `dpnp.clip` implementation to align with Python Array API 2023.12 specification [#2048](https://github.com/IntelPython/dpnp/pull/2048)
119119
* Skipped outdated tests for `dpnp.linalg.solve` due to compatibility issues with NumPy 2.0 [#2074](https://github.com/IntelPython/dpnp/pull/2074)
120+
* Updated installation instructions [#2098](https://github.com/IntelPython/dpnp/pull/2098)
120121

121122
### Fixed
122123

tests/third_party/cupy/linalg_tests/test_product.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def test_dot_with_out(self, xp, dtype_a, dtype_b, dtype_c):
102102
)
103103
)
104104
class TestCrossProduct(unittest.TestCase):
105+
@pytest.mark.filterwarnings("ignore::DeprecationWarning")
105106
@testing.for_all_dtypes_combination(["dtype_a", "dtype_b"])
106107
@testing.numpy_cupy_allclose(type_check=has_support_aspect64())
107108
def test_cross(self, xp, dtype_a, dtype_b):

0 commit comments

Comments
 (0)