[llvm-bugs] [Bug 36705] New: Assertion failure at kmp_runtime.cpp(5915): thread->th.th_reap_state == 1.

via llvm-bugs llvm-bugs at lists.llvm.org
Tue Mar 13 11:13:18 PDT 2018


https://bugs.llvm.org/show_bug.cgi?id=36705

            Bug ID: 36705
           Summary: Assertion failure at kmp_runtime.cpp(5915):
                    thread->th.th_reap_state == 1.
           Product: OpenMP
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: Runtime Library
          Assignee: unassignedbugs at nondot.org
          Reporter: jdenny.ornl at gmail.com
                CC: llvm-bugs at lists.llvm.org

I am testing with clang/OpenMP from master.

In the following example, where N=1 and M is in the range [2,7], I see the
following assert failure after usually less than 5 runs.  I see no failure
after 100 runs in the following cases: (a) with KMP_HOT_TEAMS_MODE=1 (b) with
any other combination of N and M (each limited to the range [1,8]), or (c) with
M omitted.

$ cat test.c
#include <stdlib.h>
int main(int argc, const char *argv[]) {
  if (argc > 1) {
    #pragma omp target teams num_teams(atoi(argv[1]))
      ;
  }
  if (argc > 2) {
    #pragma omp target teams num_teams(atoi(argv[2]))
      ;
  }
  return 0;
}

$ clang -fopenmp test.c

$ ./a.out $N $M
Assertion failure at kmp_runtime.cpp(5915): thread->th.th_reap_state == 1.
OMP: Error #13: Assertion failure at kmp_runtime.cpp(5915).
OMP: Hint Please submit a bug report with this message, compile and run
commands used, and machine configuration info including native compiler and
operating system versions. Faster response will be obtained by including all
program sources. For information on submitting this issue, please see
https://bugs.llvm.org/.
Aborted (core dumped)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20180313/cbd3badc/attachment.html>


More information about the llvm-bugs mailing list