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/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D274284

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 functi=
on:
void __kmp_infinite_loop(void) {
  static int done =3D 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.

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



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