mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 11:36:07 +00:00

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
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
// RUN: %libomptarget-compilexx-run-and-check-generic
|
|
|
|
#include <omp.h>
|
|
|
|
#include <cassert>
|
|
#include <iostream>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
#pragma omp parallel for
|
|
for (int i = 0; i < 16; ++i) {
|
|
for (int n = 1; n < (1 << 13); n <<= 1) {
|
|
void *p = omp_target_alloc(n * sizeof(int), 0);
|
|
omp_target_free(p, 0);
|
|
}
|
|
}
|
|
|
|
#pragma omp parallel for
|
|
for (int i = 0; i < 16; ++i) {
|
|
for (int n = 1; n < (1 << 13); n <<= 1) {
|
|
int *p = (int *)omp_target_alloc(n * sizeof(int), 0);
|
|
#pragma omp target teams distribute parallel for is_device_ptr(p)
|
|
for (int j = 0; j < n; ++j) {
|
|
p[j] = i;
|
|
}
|
|
int buffer[n];
|
|
#pragma omp target teams distribute parallel for is_device_ptr(p) \
|
|
map(from \
|
|
: buffer)
|
|
for (int j = 0; j < n; ++j) {
|
|
buffer[j] = p[j];
|
|
}
|
|
for (int j = 0; j < n; ++j) {
|
|
assert(buffer[j] == i);
|
|
}
|
|
omp_target_free(p, 0);
|
|
}
|
|
}
|
|
|
|
std::cout << "PASS\n";
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: PASS
|