Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 06 Oct 2023 01:18:28 +0000
From:      bugzilla-noreply@freebsd.org
To:        python@FreeBSD.org
Subject:   [Bug 274284] science/py-scipy hangs during configure phase
Message-ID:  <bug-274284-21822-pVEHntfhsG@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-274284-21822@https.bugs.freebsd.org/bugzilla/>
References:  <bug-274284-21822@https.bugs.freebsd.org/bugzilla/>

index | next in thread | previous in thread | raw e-mail

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274284

Konstantin Belousov <kib@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kib@FreeBSD.org

--- Comment #3 from Konstantin Belousov <kib@FreeBSD.org> ---
I see python process tightly looping doing nothing but calling sched_yield(),
the call comes from libomp.so.1.  Most likely cause is the following function:
void __kmp_infinite_loop(void) {
  static int done = FALSE;

  while (!done) {
    KMP_YIELD(TRUE);
  }
}
I do not know anything about OpenMP runtime to understand more, and binaries
do not have symbols.

BTW, it seems that Julia build also hangs with the similar syndrome.

-- 
You are receiving this mail because:
You are the assignee for the bug.

help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-274284-21822-pVEHntfhsG>