We finally got our buildbot added (to staging, at least) so we want to start running L0 tests in CI. We need `check-offload` to pass though, so XFAIL everything failing. There's a couple `UNSUPPORTED` as well, those are for sporadic fails. Also make set the `gpu` and `intelgpu` LIT variables when testing the `spirv64-intel` triple. We have no DeviceRTL yet so basically everything fails, but we manage to get ``` Total Discovered Tests: 432 Unsupported : 169 (39.12%) Passed : 67 (15.51%) Expectedly Failed: 196 (45.37%) ``` We still don't build the level zero plugin by default and these tests don't run unless the plugin was built, so this has no effect on most builds. --------- Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
// clang-format off
|
|
// RUN: %libomptarget-compile-generic && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-generic 2>&1 | %fcheck-generic -allow-empty -check-prefix=DEBUG
|
|
// REQUIRES: libomptarget-debug
|
|
// XFAIL: intelgpu
|
|
// clang-format on
|
|
|
|
/*
|
|
Test for looptripcount being popped from runtime stack.
|
|
*/
|
|
#include <omp.h>
|
|
#include <stdio.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;
|
|
}
|