Spaces:
Runtime error
Runtime error
File size: 1,427 Bytes
28958dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
#include <unittest/unittest.h>
#include <thrust/complex.h>
#include <thrust/detail/preprocessor.h>
#include <thrust/detail/alignment.h>
#include <cuda_fp16.h>
template <typename T, typename VectorT>
void TestComplexAlignment()
{
THRUST_STATIC_ASSERT(
sizeof(thrust::complex<T>) == sizeof(VectorT)
);
THRUST_STATIC_ASSERT(
THRUST_ALIGNOF(thrust::complex<T>) == THRUST_ALIGNOF(VectorT)
);
THRUST_STATIC_ASSERT(
sizeof(thrust::complex<T const>) == sizeof(VectorT)
);
THRUST_STATIC_ASSERT(
THRUST_ALIGNOF(thrust::complex<T const>) == THRUST_ALIGNOF(VectorT)
);
}
DECLARE_UNITTEST_WITH_NAME(
THRUST_PP_EXPAND_ARGS(TestComplexAlignment<char, char2>)
, TestComplexCharAlignment
);
DECLARE_UNITTEST_WITH_NAME(
THRUST_PP_EXPAND_ARGS(TestComplexAlignment<short, short2>)
, TestComplexShortAlignment
);
DECLARE_UNITTEST_WITH_NAME(
THRUST_PP_EXPAND_ARGS(TestComplexAlignment<int, int2>)
, TestComplexIntAlignment
);
DECLARE_UNITTEST_WITH_NAME(
THRUST_PP_EXPAND_ARGS(TestComplexAlignment<long, long2>)
, TestComplexLongAlignment
);
DECLARE_UNITTEST_WITH_NAME(
THRUST_PP_EXPAND_ARGS(TestComplexAlignment<__half, __half2>)
, TestComplexHalfAlignment
);
DECLARE_UNITTEST_WITH_NAME(
THRUST_PP_EXPAND_ARGS(TestComplexAlignment<float, float2>)
, TestComplexFloatAlignment
);
DECLARE_UNITTEST_WITH_NAME(
THRUST_PP_EXPAND_ARGS(TestComplexAlignment<double, double2>)
, TestComplexDoubleAlignment
);
|