bolt/deps/llvm-18.1.8/openmp/libomptarget/test/api/omp_env_vars.c

13 lines
334 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %libomptarget-compile-generic
// RUN: env OMP_NUM_TEAMS=1 OMP_TEAMS_THREAD_LIMIT=1 LIBOMPTARGET_INFO=16 \
// RUN: %libomptarget-run-generic 2>&1 | %fcheck-generic
#define N 256
int main() {
// CHECK: Launching kernel [[KERNEL:.+_main_.+]] with 1 blocks and 1 threads
#pragma omp target teams
#pragma omp parallel
{}
}