Skip to content

Commit e4492b6

Browse files
[OpenMP] NFC: temporarily disable assertion until the bug with dependences is fixed
1 parent c0450af commit e4492b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openmp/runtime/src/kmp_taskdeps.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ static inline void __kmp_node_deref(kmp_info_t *thread, kmp_depnode_t *node) {
2323
return;
2424

2525
kmp_int32 n = KMP_ATOMIC_DEC(&node->dn.nrefs) - 1;
26-
KMP_DEBUG_ASSERT(n >= 0);
26+
// TODO: temporarily disable assertion until the bug with dependences is fixed
27+
// KMP_DEBUG_ASSERT(n >= 0);
2728
if (n == 0) {
2829
KMP_ASSERT(node->dn.nrefs == 0);
2930
#if USE_FAST_MEMORY

0 commit comments

Comments
 (0)