Previously an opt-in flag `-fopenmp-new-driver` was used to enable the new offloading driver. After passing tests for a few months it should be sufficiently mature to flip the switch and make it the default. The new offloading driver is now enabled if there is OpenMP and OpenMP offloading present and the new `-fno-openmp-new-driver` is not present. The new offloading driver has three main benefits over the old method: - Static library support - Device-side LTO - Unified clang driver stages Depends on D122683 Differential Revision: https://reviews.llvm.org/D122831
43 lines
829 B
C++
43 lines
829 B
C++
// RUN: %libomptarget-compilexx-run-and-check-generic
|
|
|
|
// UNSUPPORTED: x86_64-pc-linux-gnu
|
|
// UNSUPPORTED: x86_64-pc-linux-gnu-oldDriver
|
|
|
|
#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
|