解决报错 OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized
·
报错信息:OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized
(py38) D:\Pycharm\Yolov5_DeepSort_Pytorch>python track.py
Namespace(agnostic_nms=False, augment=False, classes=[0], conf_thres=0.4, config_deepsort='deep_sort/configs/deep_sort.yaml', device='', fourcc='mp4v', img_size=64
0, iou_thres=0.5, output='inference/output', save_txt=False, source='0', view_img=False, weights='yolov5/weights/yolov5x.pt')
D:\Pycharm\Yolov5_DeepSort_Pytorch\deep_sort\utils\parser.py:23: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is un
safe. Please read https://msg.pyyaml.org/load for full details.
self.update(yaml.load(fo.read()))
1/1: 0... success (640x480 at 30.00 FPS).
0: 512x640 1 persons, Done. (0.966s)
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 inc
orrect 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 runti
me 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 contin
ue to execute, but that may cause crashes or silently produce incorrect results. For more information, please see http://www.intel.com/software/products/support/.
解决办法:
import os
os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE"
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐



所有评论(0)