Skip to content

Commit bffd9e4

Browse files
committed
Remove support of sycl::complex<sycl::half> type
1 parent ed61d3a commit bffd9e4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
* Build translation unit "simplify_iteration_space.cpp" compiled multiple times as a static library [gh-1847](https://github.com/IntelPython/dpctl/pull/1847)
3333
* Fix warning in documentation generation caused by `diff` docstring [gh-1855](https://github.com/IntelPython/dpctl/pull/1855)
3434
* Fix additional warnings when generating docs [gh-1861](https://github.com/IntelPython/dpctl/pull/1861)
35-
* Add support of cv-qualifiers and sycl::half type in `is_complex<T>` helper [gh-1900](https://github.com/IntelPython/dpctl/pull/1900)
35+
* Add support of CV-qualifiers in `is_complex<T>` helper [gh-1900](https://github.com/IntelPython/dpctl/pull/1900)
3636

3737
## [0.18.1] - Oct. 11, 2024
3838

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ template <typename T>
4444
struct is_complex<
4545
T,
4646
std::enable_if_t<
47-
std::is_same_v<std::remove_cv_t<T>, std::complex<sycl::half>> ||
4847
std::is_same_v<std::remove_cv_t<T>, std::complex<float>> ||
4948
std::is_same_v<std::remove_cv_t<T>, std::complex<double>>>>
5049
: public std::true_type

0 commit comments

Comments
 (0)