e4b44cc413
Change-Id: I55a3cbf5ce15cd93a280af295b88c28e51246148
[ROCm/hip-tests commit: 1729154341]
67 строки
3.8 KiB
C++
67 строки
3.8 KiB
C++
/*
|
|
Copyright (c) 2021 Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
|
|
#include <hip_test_common.hh>
|
|
|
|
class Dummy {
|
|
public:
|
|
__device__ Dummy() {}
|
|
__device__ ~Dummy() {}
|
|
};
|
|
|
|
#define INTRINSIC_UNARY_INT_NEGATIVE_KERNELS(func_name) \
|
|
__global__ void func_name##_kernel_v1(int* x) { int result = func_name(x); } \
|
|
__global__ void func_name##_kernel_v2(Dummy x) { int result = func_name(x); }
|
|
|
|
#define INTRINSIC_UNARY_LONGLONG_NEGATIVE_KERNELS(func_name) \
|
|
__global__ void func_name##_kernel_v1(long long int* x) { long long int result = func_name(x); } \
|
|
__global__ void func_name##_kernel_v2(Dummy x) { long long int result = func_name(x); }
|
|
|
|
#define INTRINSIC_BINARY_INT_NEGATIVE_KERNELS(func_name) \
|
|
__global__ void func_name##_kernel_v1(int* x, int y) { int result = func_name(x, y); } \
|
|
__global__ void func_name##_kernel_v2(int x, int* y) { int result = func_name(x, y); } \
|
|
__global__ void func_name##_kernel_v3(Dummy x, int y) { int result = func_name(x, y); } \
|
|
__global__ void func_name##_kernel_v4(int x, Dummy y) { int result = func_name(x, y); }
|
|
|
|
#define INTRINSIC_BINARY_LONGLONG_NEGATIVE_KERNELS(func_name) \
|
|
__global__ void func_name##_kernel_v1(long long int* x, long long int y) { \
|
|
long long int result = func_name(x, y); \
|
|
} \
|
|
__global__ void func_name##_kernel_v2(long long int x, long long int* y) { \
|
|
long long int result = func_name##(x, y); \
|
|
} \
|
|
__global__ void func_name##_kernel_v3(Dummy x, long long int y) { \
|
|
long long int result = func_name##(x, y); \
|
|
} \
|
|
__global__ void func_name##_kernel_v4(long long int x, Dummy y) { \
|
|
long long int result = func_name##(x, y); \
|
|
}
|
|
|
|
INTRINSIC_UNARY_INT_NEGATIVE_KERNELS(__brev)
|
|
INTRINSIC_UNARY_INT_NEGATIVE_KERNELS(__clz)
|
|
INTRINSIC_UNARY_INT_NEGATIVE_KERNELS(__ffs)
|
|
INTRINSIC_UNARY_INT_NEGATIVE_KERNELS(__popc)
|
|
INTRINSIC_UNARY_LONGLONG_NEGATIVE_KERNELS(__brevll)
|
|
INTRINSIC_UNARY_LONGLONG_NEGATIVE_KERNELS(__clzll)
|
|
INTRINSIC_UNARY_LONGLONG_NEGATIVE_KERNELS(__ffsll)
|
|
INTRINSIC_UNARY_LONGLONG_NEGATIVE_KERNELS(__popcll)
|
|
INTRINSIC_BINARY_INT_NEGATIVE_KERNELS(__mul24) |