Files
clang-p2996/offload/test/offloading/ompx_bare_ballot_sync.c
Joseph Huber 506ca19dc9 [OpenMP] Remove use of '__AMDGCN_WAVEFRONT_SIZE' (#113156)
Summary:
This is going to be deprecated in
https://github.com/llvm/llvm-project/pull/112849. This patch ports it to
use the builtin instead. This isn't a compile constant, so it could
slightly negatively affect codegen. There really should be an IR pass to
turn it into a constant if the function has known attributes.

Using the builtin is correct when we just do it for knowing the size
like we do here. Obviously guarding w32/w64 code with this check would
be broken.
2024-11-25 07:38:28 -06:00

50 lines
1.3 KiB
C

// RUN: %libomptarget-compilexx-run-and-check-generic
//
// REQUIRES: gpu
#include <assert.h>
#include <ompx.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#pragma omp begin declare variant match(device = {arch(amdgcn)})
unsigned get_warp_size() { return __builtin_amdgcn_wavefrontsize(); }
#pragma omp end declare variant
#pragma omp begin declare variant match(device = {arch(nvptx64)})
unsigned get_warp_size() { return __nvvm_read_ptx_sreg_warpsize(); }
#pragma omp end declare variant
#pragma omp begin declare variant match(device = {kind(cpu)})
unsigned get_warp_size() { return 1; }
#pragma omp end declare variant
int main(int argc, char *argv[]) {
const int num_blocks = 1;
const int block_size = 256;
const int N = num_blocks * block_size;
int *res = (int *)malloc(N * sizeof(int));
#pragma omp target teams ompx_bare num_teams(num_blocks) \
thread_limit(block_size) map(from : res[0 : N])
{
int tid = ompx_thread_id_x();
uint64_t mask = ompx_ballot_sync(~0LU, tid & 0x1);
if (get_warp_size() == 64)
res[tid] = mask == 0xaaaaaaaaaaaaaaaa;
else
res[tid] = mask == 0xaaaaaaaa;
}
for (int i = 0; i < N; ++i)
assert(res[i]);
// CHECK: PASS
printf("PASS\n");
free(res);
return 0;
}