Skip to content

Commit 28abb84

Browse files
committed
Revert changes
1 parent 3013429 commit 28abb84

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test_xcpp_kernel.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ class XCppTests(jupyter_kernel_test.KernelTests):
140140
omp_set_thread_num(max_threads);
141141
#pragma omp parallel
142142
{
143-
143+
if(omp_get_thread_num()==2) {
144+
std::cerr<<omp_get_thread_num()<<std::endl;
145+
}
144146
}"""
145147
def test_xcpp_omp(self):
146148
self.flush_channels()

0 commit comments

Comments
 (0)