Skip to content

Commit

Permalink
Drop std::is_signed<complex<T>>
Browse files Browse the repository at this point in the history
Since CuPy bundled CCCL, this line causes issues. Though don't think it
should be needed any more.

cupy/cupy#7851
  • Loading branch information
jakirkham authored Jan 19, 2024
1 parent 0bb1dd6 commit 815ea4f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ def _call_kernel(
template<> struct std::is_floating_point<float16> : std::true_type {};
template<> struct std::is_signed<float16> : std::true_type {};
template<class T> struct std::is_signed<complex<T>> : std::is_signed<T> {};
"""


Expand Down

0 comments on commit 815ea4f

Please sign in to comment.