Skip to content

Commit 15f9cb7

Browse files
committed
fix sealpir
1 parent cba8b22 commit 15f9cb7

File tree

211 files changed

+7570
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+7570
-20
lines changed

CMakeCache.txt

+428
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.

CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c

+671
Large diffs are not rendered by default.

CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp

+660
Large diffs are not rendered by default.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
#include <stdio.h>
3+
#include <omp.h>
4+
const char ompver_str[] = { 'I', 'N', 'F', 'O', ':', 'O', 'p', 'e', 'n', 'M',
5+
'P', '-', 'd', 'a', 't', 'e', '[',
6+
('0' + ((_OPENMP/100000)%10)),
7+
('0' + ((_OPENMP/10000)%10)),
8+
('0' + ((_OPENMP/1000)%10)),
9+
('0' + ((_OPENMP/100)%10)),
10+
('0' + ((_OPENMP/10)%10)),
11+
('0' + ((_OPENMP/1)%10)),
12+
']', '\0' };
13+
int main(void)
14+
{
15+
puts(ompver_str);
16+
return 0;
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
#include <stdio.h>
3+
#include <omp.h>
4+
const char ompver_str[] = { 'I', 'N', 'F', 'O', ':', 'O', 'p', 'e', 'n', 'M',
5+
'P', '-', 'd', 'a', 't', 'e', '[',
6+
('0' + ((_OPENMP/100000)%10)),
7+
('0' + ((_OPENMP/10000)%10)),
8+
('0' + ((_OPENMP/1000)%10)),
9+
('0' + ((_OPENMP/100)%10)),
10+
('0' + ((_OPENMP/10)%10)),
11+
('0' + ((_OPENMP/1)%10)),
12+
']', '\0' };
13+
int main(void)
14+
{
15+
puts(ompver_str);
16+
return 0;
17+
}

CMakeFiles/FindOpenMP/OpenMPTryFlag.c

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
#include <omp.h>
3+
int main(void) {
4+
#ifdef _OPENMP
5+
omp_get_max_threads();
6+
return 0;
7+
#elif defined(__HIP_DEVICE_COMPILE__)
8+
return 0;
9+
#else
10+
breaks_on_purpose
11+
#endif
12+
}
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
#include <omp.h>
3+
int main(void) {
4+
#ifdef _OPENMP
5+
omp_get_max_threads();
6+
return 0;
7+
#elif defined(__HIP_DEVICE_COMPILE__)
8+
return 0;
9+
#else
10+
breaks_on_purpose
11+
#endif
12+
}

CMakeFiles/FindOpenMP/ompver_C.bin

16.6 KB
Binary file not shown.

CMakeFiles/FindOpenMP/ompver_CXX.bin

16.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)