Skip to content

Commit 98f56fa

Browse files
authored
Merge branch 'master' into suppress-compiler-warnings
2 parents b08dadd + c73e472 commit 98f56fa

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
5050
* Aligned `strides` property of `dpnp.ndarray` with NumPy and CuPy implementations [#2747](https://github.com/IntelPython/dpnp/pull/2747)
5151
* Extended `dpnp.nan_to_num` to support broadcasting of `nan`, `posinf`, and `neginf` keywords [#2754](https://github.com/IntelPython/dpnp/pull/2754)
5252
* Changed `dpnp.partition` implementation to reuse `dpnp.sort` where it brings the performance benefit [#2766](https://github.com/IntelPython/dpnp/pull/2766)
53+
* `dpnp` uses pybind11 3.0.2 [#27734](https://github.com/IntelPython/dpnp/pull/2773)
5354
* Modified CMake files for the extension to explicitly mark DPC++ compiler and dpctl headers as system ones and so to suppress the build warning generated inside them [#2770](https://github.com/IntelPython/dpnp/pull/2770)
5455

5556
### Deprecated
@@ -65,6 +66,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
6566
* Removed the obsolete interface from DPNP to Numba JIT [#2647](https://github.com/IntelPython/dpnp/pull/2647)
6667
* Removed the `newshape` parameter from `dpnp.reshape`, which has been deprecated since dpnp 0.17.0. Pass it positionally or use `shape=` on newer versions [#2670](https://github.com/IntelPython/dpnp/pull/2670)
6768
* Removed unused `pytest` configuration from `pyproject.toml` [#2729](https://github.com/IntelPython/dpnp/pull/2729)
69+
* Dropped a conda run dependency on `onemkl-sycl-stats` package [#2771](https://github.com/IntelPython/dpnp/pull/2771)
6870

6971
### Fixed
7072

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ find_package(Python 3.10...<3.15 REQUIRED COMPONENTS Development.Module NumPy)
9595
include(FetchContent)
9696
FetchContent_Declare(
9797
pybind11
98-
URL https://github.com/pybind/pybind11/archive/refs/tags/v3.0.1.tar.gz
99-
URL_HASH SHA256=741633da746b7c738bb71f1854f957b9da660bcd2dce68d71949037f0969d0ca
98+
URL https://github.com/pybind/pybind11/archive/refs/tags/v3.0.2.tar.gz
99+
URL_HASH SHA256=2f20a0af0b921815e0e169ea7fec63909869323581b89d7de1553468553f6a2d
100100
FIND_PACKAGE_ARGS NAMES pybind11
101101
)
102102
FetchContent_MakeAvailable(pybind11)

conda-recipe/meta.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ requirements:
4949
- {{ pin_compatible('onemkl-sycl-dft', min_pin='x.x', max_pin='x') }}
5050
- {{ pin_compatible('onemkl-sycl-lapack', min_pin='x.x', max_pin='x') }}
5151
- {{ pin_compatible('onemkl-sycl-rng', min_pin='x.x', max_pin='x') }}
52-
- {{ pin_compatible('onemkl-sycl-stats', min_pin='x.x', max_pin='x') }}
5352
- {{ pin_compatible('onemkl-sycl-vm', min_pin='x.x', max_pin='x') }}
5453
- numpy
5554
- intel-gpu-ocl-icd-system

0 commit comments

Comments
 (0)