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
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
// RUN: %libomptarget-compile-generic && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-generic 2>&1 | %fcheck-generic -allow-empty -check-prefix=DEBUG
|
|
// REQUIRES: libomptarget-debug
|
|
|
|
/*
|
|
Test for looptripcount being popped from runtime stack.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <omp.h>
|
|
int main()
|
|
{
|
|
int N = 128;
|
|
int NN = 1024;
|
|
int num_teams[NN];
|
|
int num_threads[NN];
|
|
|
|
printf("#pragma omp target teams distribute parallel for thread_limit(4)\n");
|
|
#pragma omp target teams distribute parallel for thread_limit(4)
|
|
for (int j = 0; j< N; j++) {
|
|
num_threads[j] = omp_get_num_threads();
|
|
num_teams[j] = omp_get_num_teams();
|
|
}
|
|
printf("num_threads %d num_teams %d\n", num_threads[0], num_teams[0]);
|
|
// DEBUG: loop trip count is 128
|
|
printf("#pragma omp target teams distribute parallel for\n");
|
|
#pragma omp target teams distribute parallel for
|
|
for (int j = 0; j< N; j++) {
|
|
num_threads[j] = omp_get_num_threads();
|
|
num_teams[j] = omp_get_num_teams();
|
|
}
|
|
printf("num_threads %d num_teams %d\n", num_threads[0], num_teams[0]);
|
|
// DEBUG: loop trip count is 128
|
|
return 0;
|
|
}
|