thrust::operator+
Defined in thrust/complex.h
-
template<typename T0, typename T1>
complex<::cuda::std::common_type_t<T0, T1>> thrust::operator+(const T0 &x, const complex<T1> &y) Adds a
complex
number to a scalar.The value type of the
complex
should be compatible with the scalar and the type of the returnedcomplex
is the promoted type of the two arguments.- Parameters
x – The scalar.
y – The
complex
.