This patch fuses the RUN lines for most libomptarget tests. The previous patch D101315 created separate test targets for each supported offloading triple. This patch updates the RUN lines in libomptarget tests to use a generic run line independent of the offloading target selected for the lit instance. In cases, where no RUN line was defined for a specific offloading target, the corresponding target is declared as XFAIL. If it turns out that a test actually supports the target, the XFAIL line can be removed. Differential Revision: https://reviews.llvm.org/D101326
40 lines
746 B
C++
40 lines
746 B
C++
// RUN: %libomptarget-compilexx-run-and-check-generic
|
|
|
|
#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
|