Skip to content

Commit 3013429

Browse files
committed
Remove if statement (Debug)
1 parent adaf209 commit 3013429

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/test_xcpp_kernel.py

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

0 commit comments

Comments
 (0)