We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cb7f96 commit 87ad104Copy full SHA for 87ad104
test/test_xcpp_kernel.py
@@ -138,13 +138,7 @@ class XCppTests(jupyter_kernel_test.KernelTests):
138
if(Cpp::LoadLibrary("/home/runner/micromamba/envs/xeus-cpp/lib/libomp.so")) {
139
int max_threads = omp_get_max_threads();
140
omp_set_thread_num(max_threads);
141
- #pragma omp parallel
142
- {
143
- if(omp_get_thread_num()==2) {
144
- std::cerr<<omp_get_thread_num()<<std::endl;
145
- }
146
147
+ std::cerr<<"OpenMP library loaded"<<std::endl;
148
else
149
{
150
std::cerr<<"OpenMP library not loaded"<<std::endl;
0 commit comments