File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
dpctl/tensor/libtensor/include/kernels/elementwise_functions Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ template <typename argT, typename resT> struct ImagFunctor
7171
7272 resT operator ()(const argT &in) const
7373 {
74- if constexpr (is_complex <argT>::value ) {
74+ if constexpr (is_complex_v <argT>) {
7575 return std::imag (in);
7676 }
7777 else {
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ using dpctl::tensor::ssize_t;
5353namespace td_ns = dpctl::tensor::type_dispatch;
5454
5555using dpctl::tensor::type_utils::is_complex;
56+ using dpctl::tensor::type_utils::is_complex_v;
5657
5758template <typename argT, typename resT> struct RealFunctor
5859{
@@ -69,7 +70,7 @@ template <typename argT, typename resT> struct RealFunctor
6970
7071 resT operator ()(const argT &in) const
7172 {
72- if constexpr (is_complex <argT>::value ) {
73+ if constexpr (is_complex_v <argT>) {
7374 return std::real (in);
7475 }
7576 else {
You can’t perform that action at this time.
0 commit comments