
Introduce KMP_COMPILER_ICX macro to represent compilation with oneAPI compiler. Fixup flag detection and compiler ID detection in CMake. Older CMake's detect IntelLLVM as Clang. Fix compiler warnings. Fixup many of the tests to have non-empty parallel regions as they are elided by oneAPI compiler.
31 lines
867 B
C
31 lines
867 B
C
// RUN: %libomp-compile && env OMP_DISPLAY_AFFINITY=true %libomp-run | %python %S/check.py -c 'CHECK' %s
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <omp.h>
|
|
#include "omp_testsuite.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
omp_set_affinity_format("TESTER: tl:%L at:%a tn:%n nt:%N");
|
|
omp_set_nested(1);
|
|
#pragma omp parallel num_threads(1)
|
|
{
|
|
go_parallel_nthreads(1);
|
|
go_parallel_nthreads(1);
|
|
#pragma omp parallel num_threads(1)
|
|
{
|
|
go_parallel_nthreads(1);
|
|
}
|
|
go_parallel_nthreads(1);
|
|
}
|
|
go_parallel_nthreads(1);
|
|
go_parallel_nthreads(1);
|
|
return get_exit_value();
|
|
}
|
|
|
|
// CHECK: num_threads=1 TESTER: tl:1 at:0 tn:0 nt:1
|
|
// CHECK: num_threads=1 TESTER: tl:2 at:0 tn:0 nt:1
|
|
// CHECK: num_threads=1 TESTER: tl:3 at:0 tn:0 nt:1
|
|
// CHECK: num_threads=1 TESTER: tl:2 at:0 tn:0 nt:1
|
|
// CHECK: num_threads=1 TESTER: tl:1 at:0 tn:0 nt:1
|