OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized. OMP: Hint This means that multiple copies of the OpenMP runtime have been linked into the program. That is dangerous, since it can degrade performance or cause incorrect results. The best thing to do is to ensure that only a single OpenMP runtime is linked into the process, e.g. by avoiding static linking of the OpenMP runtime in any library. As an unsafe, unsupported, undocumented workaround you can set the environment variable KMP_DUPLICATE_LIB_OK=TRUE to allow the program to continue to execute, but that may cause crashes or silently produce incorrect results. For more information, please see http://www.intel.com/software/products/support/.
时间: 2024-04-23 22:25:07 浏览: 116
libiomp5md.dll
这是一个关于OpenMP运行时库重复链接的错误信息。它提示说程序中链接了多个OpenMP运行时库,这会危及性能或导致错误的结果。最好的做法是确保只有一个OpenMP运行时库链接到进程中,例如避免在任何库中静态链接OpenMP运行时库。作为一种不安全、不支持、不受文档支持的解决方法,你可以设置环境变量KMP_DUPLICATE_LIB_OK=TRUE来允许程序继续执行,但这可能会导致崩溃或默默地产生错误的结果。更多信息请查看http://www.intel.com/software/products/support/。
阅读全文