mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-11 02:32:12 +01:00
Merge 4b1236548ae576a543180ed8abb073fbc48ce9fc into 940a4c7a9113b95de4445c0ec3bfbd6818df653b
This commit is contained in:
commit
c46370ca80
@ -263,27 +263,27 @@ inline __host__ __device__ uint4 make_uint4(int4 a)
|
||||
// negate
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
inline __host__ __device__ float2 operator-(float2 &a)
|
||||
inline __host__ __device__ float2 operator-(float2 a)
|
||||
{
|
||||
return make_float2(-a.x, -a.y);
|
||||
}
|
||||
inline __host__ __device__ int2 operator-(int2 &a)
|
||||
inline __host__ __device__ int2 operator-(int2 a)
|
||||
{
|
||||
return make_int2(-a.x, -a.y);
|
||||
}
|
||||
inline __host__ __device__ float3 operator-(float3 &a)
|
||||
inline __host__ __device__ float3 operator-(float3 a)
|
||||
{
|
||||
return make_float3(-a.x, -a.y, -a.z);
|
||||
}
|
||||
inline __host__ __device__ int3 operator-(int3 &a)
|
||||
inline __host__ __device__ int3 operator-(int3 a)
|
||||
{
|
||||
return make_int3(-a.x, -a.y, -a.z);
|
||||
}
|
||||
inline __host__ __device__ float4 operator-(float4 &a)
|
||||
inline __host__ __device__ float4 operator-(float4 a)
|
||||
{
|
||||
return make_float4(-a.x, -a.y, -a.z, -a.w);
|
||||
}
|
||||
inline __host__ __device__ int4 operator-(int4 &a)
|
||||
inline __host__ __device__ int4 operator-(int4 a)
|
||||
{
|
||||
return make_int4(-a.x, -a.y, -a.z, -a.w);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user