Windows 上 Ubuntu 上的 OMP 错误 Bash

Windows 上 Ubuntu 上的 OMP 错误 Bash

我使用一个软件进行基因分析。在Linux系统下运行正常。不过,我对 Windows 的 bash 很好奇。当我运行分析时,出现以下错误:

OMP: Error #100: Fatal system error detected.
OMP: System error #22: Invalid argument
forrtl: error (76): Abort trap signal

请问,有人知道可能是什么以及如何解决吗?

答案1

是一个已知的错误在 WSL 中,程序链接到 Intel 的 MKL 库。解决办法是export KMP_AFFINITY=disabled在运行程序之前。

答案2

我遇到了类似的问题。我的情况的解决方案是安装nomkl.

conda install nomkl

我找到了这个解决方案(这里

相关内容