3898f6af3c
Since these are supported in HIP no reason to emit warnings.
12 righe
273 B
Plaintext
12 righe
273 B
Plaintext
//Test to ensure hipify runs correctly.
|
|
// Hipify may report warnings for some missing/unsupported functions
|
|
|
|
void __global__
|
|
test_kernel(float *A)
|
|
{
|
|
int tid = blockIdx.x * blockDim.x + threadIdx.x;
|
|
|
|
float a = __ballot(tid < 16);
|
|
float b = __shfl(tid < 16);
|
|
}
|