-
Notifications
You must be signed in to change notification settings - Fork 468
Description
When I creating datas: python tools/create_data.py nuscenes_data_prep --root_path=NUSCENES_TRAINVAL_DATASET_ROOT --version="v1.0-trainval" --nsweeps=10
It comes to "OSError: /lib/x86_64-linux-gnu/libmkl_intel_thread.so: undefined symbol: mkl_graph_mxm_gus_phase2_plus_second_fp32_def_i64_i32_fp32"
And the complete Traceback is:
Traceback (most recent call last):
File "/home/zhangruitao/projects/CenterPoint/det3d/torchie/trainer/checkpoint.py", line 45, in
import spconv.pytorch as spconv
File "/home/zhangruitao/anaconda3/envs/centerpoint/lib/python3.6/site-packages/spconv/init.py", line 31, in
torch.ops.load_library(_LIB_PATH)
File "/home/zhangruitao/anaconda3/envs/centerpoint/lib/python3.6/site-packages/torch/_ops.py", line 102, in load_library
ctypes.CDLL(path)
File "/home/zhangruitao/anaconda3/envs/centerpoint/lib/python3.6/ctypes/init.py", line 348, in init
self._handle = _dlopen(self._name, mode)
OSError: /lib/x86_64-linux-gnu/libmkl_intel_thread.so: undefined symbol: mkl_graph_mxm_gus_phase2_plus_second_fp32_def_i64_i32_fp32
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "tools/create_data.py", line 7, in
from det3d.datasets.nuscenes import nusc_common as nu_ds
File "/home/zhangruitao/projects/CenterPoint/det3d/datasets/init.py", line 1, in
from .builder import build_dataset
File "/home/zhangruitao/projects/CenterPoint/det3d/datasets/builder.py", line 3, in
from det3d.utils import build_from_cfg
File "/home/zhangruitao/projects/CenterPoint/det3d/utils/init.py", line 2, in
from .registry import Registry, build_from_cfg
File "/home/zhangruitao/projects/CenterPoint/det3d/utils/registry.py", line 3, in
from det3d import torchie
File "/home/zhangruitao/projects/CenterPoint/det3d/torchie/init.py", line 2, in
from .cnn import *
File "/home/zhangruitao/projects/CenterPoint/det3d/torchie/cnn/init.py", line 1, in
from .alexnet import AlexNet
File "/home/zhangruitao/projects/CenterPoint/det3d/torchie/cnn/alexnet.py", line 5, in
from ..trainer import load_checkpoint
File "/home/zhangruitao/projects/CenterPoint/det3d/torchie/trainer/init.py", line 1, in
from .checkpoint import (
File "/home/zhangruitao/projects/CenterPoint/det3d/torchie/trainer/checkpoint.py", line 47, in
import spconv as spconv
File "/home/zhangruitao/anaconda3/envs/centerpoint/lib/python3.6/site-packages/spconv/init.py", line 31, in
torch.ops.load_library(_LIB_PATH)
File "/home/zhangruitao/anaconda3/envs/centerpoint/lib/python3.6/site-packages/torch/_ops.py", line 102, in load_library
ctypes.CDLL(path)
File "/home/zhangruitao/anaconda3/envs/centerpoint/lib/python3.6/ctypes/init.py", line 348, in init
self._handle = _dlopen(self._name, mode)
OSError: /lib/x86_64-linux-gnu/libmkl_intel_thread.so: undefined symbol: mkl_graph_mxm_gus_phase2_plus_second_fp32_def_i64_i32_fp32
Has anyone else encountered this problem?