File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
dpctl/tensor/libtensor/include/utils Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
33
33
* Fix warning in documentation generation caused by ` diff ` docstring [ gh-1855 ] ( https://github.com/IntelPython/dpctl/pull/1855 )
34
34
* Fix additional warnings when generating docs [ gh-1861 ] ( https://github.com/IntelPython/dpctl/pull/1861 )
35
35
* Add missing include of SYCL header to "math_utils.hpp" [ gh-1899 ] ( https://github.com/IntelPython/dpctl/pull/1899 )
36
- * Add support of cv -qualifiers and sycl::half type in ` is_complex<T> ` helper [ gh-1900 ] ( https://github.com/IntelPython/dpctl/pull/1900 )
36
+ * Add support of CV -qualifiers in ` is_complex<T> ` helper [ gh-1900 ] ( https://github.com/IntelPython/dpctl/pull/1900 )
37
37
38
38
## [ 0.18.1] - Oct. 11, 2024
39
39
Original file line number Diff line number Diff line change @@ -43,10 +43,8 @@ struct is_complex : public std::false_type
43
43
template <typename T>
44
44
struct is_complex <
45
45
T,
46
- std::enable_if_t <
47
- std::is_same_v<std::remove_cv_t <T>, std::complex<sycl::half>> ||
48
- std::is_same_v<std::remove_cv_t <T>, std::complex<float >> ||
49
- std::is_same_v<std::remove_cv_t <T>, std::complex<double >>>>
46
+ std::enable_if_t <std::is_same_v<std::remove_cv_t <T>, std::complex<float >> ||
47
+ std::is_same_v<std::remove_cv_t <T>, std::complex<double >>>>
50
48
: public std::true_type
51
49
{
52
50
};
You can’t perform that action at this time.
0 commit comments