llvm-project/offload/test/offloading/parallel_offloading_map.cpp
Ethan Luis McDonough 8823448807
[Offload] Refactor offload test requirements (#95196)
Many tests in the `offload` project have requirements defined by which
targets are not supported rather than which platforms are supported.
This patch aims to streamline the requirement definitions by adding four
new feature tags: `host`, `gpu`, `amdgpu`, and `nvidiagpu`.
2024-06-29 00:56:18 -05:00

42 lines
764 B
C++

// RUN: %libomptarget-compilexx-run-and-check-generic
// REQUIRES: gpu
#include <cassert>
#include <iostream>
int main(int argc, char *argv[]) {
constexpr const int num_threads = 64, N = 128;
int array[num_threads] = {0};
#pragma omp parallel for
for (int i = 0; i < num_threads; ++i) {
int tmp[N];
for (int j = 0; j < N; ++j) {
tmp[j] = i;
}
#pragma omp target teams distribute parallel for map(tofrom : tmp)
for (int j = 0; j < N; ++j) {
tmp[j] += j;
}
for (int j = 0; j < N; ++j) {
array[i] += tmp[j];
}
}
// Verify
for (int i = 0; i < num_threads; ++i) {
const int ref = (0 + N - 1) * N / 2 + i * N;
assert(array[i] == ref);
}
std::cout << "PASS\n";
return 0;
}
// CHECK: PASS