Skip to content

Commit 7bac769

Browse files
Merge pull request #1908 from IntelPython/backport-to-maintenance-0.18.x/gh-1899
Backport to maintenance 0.18.x/gh 1899
2 parents 472f6ca + c5ea03a commit 7bac769

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [0.18.2] - Nov. XX, 2024
88

9+
### Maintenance
10+
11+
* Add missing include of SYCL header to "math_utils.hpp" [gh-1899](https://github.com/IntelPython/dpctl/pull/1899)
12+
913
### Fixed
14+
1015
* Fix for `tensor.result_type` when all inputs are Python built-in scalars [gh-1904](https://github.com/IntelPython/dpctl/pull/1904)
1116

17+
1218
## [0.18.1] - Oct. 11, 2024
1319

1420
### Changed

dpctl/tensor/libtensor/include/utils/math_utils.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#pragma once
2626
#include <cmath>
2727
#include <complex>
28+
#include <sycl/sycl.hpp>
2829

2930
namespace dpctl
3031
{

0 commit comments

Comments
 (0)