qcraftai / pillarnext

PillarNeXt: Rethinking Network Designs for 3D Object Detection in LiDAR Point Clouds (CVPR 2023)
Other
173 stars 12 forks source link

ImportError("cannot import name 'iou3d_nms_cuda' from partially initialized module 'det3d.core.iou3d_nms' (most likely due to a circular import) #9

Closed glingli closed 8 months ago

glingli commented 8 months ago

您好,我在运行train.py时遇到了如下的报错:

File "D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\iou3d_nms_utils.py", line 8, in <module>
    from . import iou3d_nms_cuda
ImportError: cannot import name 'iou3d_nms_cuda' from partially initialized module 'det3d.core.iou3d_nms' (most likely due to a circular import) (D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\__init__.py)

我注意到在iou3d_nms_utils.py中有from . import iou3d_nms_cuda,但是在文件目录中没有找到这个包,请问我该怎么解决呢。谢谢!

完整的报错如下:

Error executing job with overrides: []
Traceback (most recent call last):
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 644, in _locate
    obj = getattr(obj, part)
AttributeError: module 'det3d.models.heads' has no attribute 'centerhead'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 650, in _locate
    obj = import_module(mod)
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 783, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "D:\Craft\EXPERIMENTS\pillarnext-main\det3d\models\heads\centerhead.py", line 4, in <module>
    from det3d.core.bbox import box_torch_ops
  File "D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\bbox\box_torch_ops.py", line 2, in <module>
    from det3d.core.iou3d_nms import iou3d_nms_cuda
  File "D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\__init__.py", line 1, in <module>
    from det3d.core.iou3d_nms import iou3d_nms_cuda, iou3d_nms_utils  # noqa F401
  File "D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\iou3d_nms_utils.py", line 8, in <module>
    from . import iou3d_nms_cuda
ImportError: cannot import name 'iou3d_nms_cuda' from partially initialized module 'det3d.core.iou3d_nms' (most likely due to a circular import) (D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\__init__.py)

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\instantiate\_instantiate2.py", line 134, in _resolve_target
    target = _locate(target)
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 658, in _locate
    raise ImportError(
ImportError: Error loading 'det3d.models.heads.centerhead.CenterHead':
ImportError("cannot import name 'iou3d_nms_cuda' from partially initialized module 'det3d.core.iou3d_nms' (most likely due to a circular import) (D:\\Craft\\EXPERIMENTS\\pillarnext-main\\det3d\\core\\iou3d_nms\\__init__.py)")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "D:\Craft\EXPERIMENTS\pillarnext-main\playground.py", line 31, in <module>
    main()
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\main.py", line 94, in decorated_main
    _run_hydra(
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 394, in _run_hydra
    _run_app(
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 457, in _run_app
    run_and_report(
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 223, in run_and_report
    raise ex
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 220, in run_and_report
    return func()
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\utils.py", line 458, in <lambda>
    lambda: hydra.run(
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\hydra.py", line 132, in run
    _ = ret.return_value
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\core\utils.py", line 260, in return_value
    raise self._return_value
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\core\utils.py", line 186, in run_job
    ret.return_value = task_function(task_cfg)
  File "D:\Craft\EXPERIMENTS\pillarnext-main\playground.py", line 26, in main
    model = instantiate(cfg.model)
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\instantiate\_instantiate2.py", line 226, in instantiate
    return instantiate_node(
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\instantiate\_instantiate2.py", line 342, in instantiate_node
    value = instantiate_node(
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\instantiate\_instantiate2.py", line 333, in instantiate_node
    _target_ = _resolve_target(node.get(_Keys.TARGET), full_key)
  File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\hydra\_internal\instantiate\_instantiate2.py", line 139, in _resolve_target
    raise InstantiationException(msg) from e
hydra.errors.InstantiationException: Error locating target 'det3d.models.heads.centerhead.CenterHead', set env var HYDRA_FULL_ERROR=1 to see chained exception.
full_key: model.head

Process finished with exit code 1
glingli commented 8 months ago

在我使用pip install -e .编译时还出现了下面的问题

(pillarnext) D:\Craft\EXPERIMENTS\pillarnext-main>pip install -e .
Obtaining file:///D:/Craft/EXPERIMENTS/pillarnext-main
  Preparing metadata (setup.py) ... done
Installing collected packages: det3d
  Running setup.py develop for det3d
    error: subprocess-exited-with-error

    × python setup.py develop did not run successfully.
    │ exit code: 1
    ╰─> [1111 lines of output]
        running develop
        running egg_info
        writing det3d.egg-info\PKG-INFO
        writing dependency_links to det3d.egg-info\dependency_links.txt
        writing top-level names to det3d.egg-info\top_level.txt
        reading manifest file 'det3d.egg-info\SOURCES.txt'
        adding license file 'LICENSE'
        writing manifest file 'det3d.egg-info\SOURCES.txt'
        running build_ext
        building 'det3d.core.iou3d_nms.iou3d_nms_cuda' extension
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated.
        !!

                ********************************************************************************
                Please avoid running ``setup.py`` and ``easy_install``.
                Instead, use pypa/build, pypa/installer or other
                standards-based tools.

                See https://github.com/pypa/setuptools/issues/917 for details.
                ********************************************************************************

        !!
          easy_install.initialize_options(self)
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
        !!

                ********************************************************************************
                Please avoid running ``setup.py`` directly.
                Instead, use pypa/build, pypa/installer or other
                standards-based tools.

                See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.                ********************************************************************************

        !!
          self.initialize_options()
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py:358: UserWarning: Error checking compiler version for cl: [WinError 2] The system cannot find the file specified
          warnings.warn(f'Error checking compiler version for {compiler}: {error}')
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py:387: UserWarning: The detected CUDA version (11.3) has a minor version mismatch with the version that was used to compile PyTorch (11.6). Most likely this shouldn't be a problem.
          warnings.warn(CUDA_MISMATCH_WARN.format(cuda_str_version, torch.version.cuda))
        Emitting ninja build file D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\build.ninja...
        Compiling objects...
        Allowing ninja to set a default number of workers... (overridable by setting the environment variable MAX_JOBS=N)
        [1/2] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\bin\nvcc --generate-dependencies-with-compile --dependency-output D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj.d --use-local-env -Xcompiler /MD -Xcompiler /wd4819 -Xcompiler /wd4251 -Xcompiler /wd4244 -Xcompiler /wd4267 -Xcompiler /wd4275 -Xcompiler /wd4018 -Xcompiler /wd4190 -Xcompiler /EHsc -Xcudafe --diag_suppress=base_class_has_different_dll_interface -Xcudafe --diag_suppress=field_without_dll_interface -Xcudafe --diag_suppress=dll_interface_conflict_none_assumed -Xcudafe --diag_suppress=dll_interface_conflict_dllexport_assumed "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu -o D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -O2 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_86,code=compute_86 -gencode=arch=compute_86,code=sm_86
        FAILED: D:/Craft/EXPERIMENTS/pillarnext-main/build/temp.win-amd64-cpython-38/Release/det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj
        C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\bin\nvcc --generate-dependencies-with-compile --dependency-output D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj.d --use-local-env -Xcompiler /MD -Xcompiler /wd4819 -Xcompiler /wd4251 -Xcompiler /wd4244 -Xcompiler /wd4267 -Xcompiler /wd4275 -Xcompiler /wd4018 -Xcompiler /wd4190 -Xcompiler /EHsc -Xcudafe --diag_suppress=base_class_has_different_dll_interface -Xcudafe --diag_suppress=field_without_dll_interface -Xcudafe --diag_suppress=dll_interface_conflict_none_assumed -Xcudafe --diag_suppress=dll_interface_conflict_dllexport_assumed "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu -o D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -O2 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_86,code=compute_86 -gencode=arch=compute_86,code=sm_86
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu(77): error: identifier "EPS" is undefined in device code

        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu(233): error: identifier "EPS" is undefined in device code

        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu(337): error: identifier "EPS" is undefined in device code

        3 errors detected in the compilation of "D:/Craft/EXPERIMENTS/pillarnext-main/det3d/core/iou3d_nms/src/iou3d_nms_kernel.cu".

        iou3d_nms_kernel.cu

        [2/2] cl /showIncludes /nologo /O2 /W3 /GL /DNDEBUG /MD /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /EHsc "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp /FoD:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms.obj -g "-I /usr/local/cuda/include" -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 /std:c++14
        FAILED: D:/Craft/EXPERIMENTS/pillarnext-main/build/temp.win-amd64-cpython-38/Release/det3d/core/iou3d_nms/src/iou3d_nms.obj
        cl /showIncludes /nologo /O2 /W3 /GL /DNDEBUG /MD /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /EHsc "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp /FoD:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms.obj -g "-I /usr/local/cuda/include" -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 /std:c++14
        cl : Command line warning D9002 : ignoring unknown option '-g'
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/macros/Macros.h(138): warning C4067: unexpected tokens following preprocessor directive - expected a newline
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::SymInt
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::SymInt
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::SymInt
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::SymInt>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/TensorImpl.h(1580): note: see reference to class template instantiation 'c10::optional<c10::SymInt>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::SymInt
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/TensorImpl.h(2688): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::TensorBase
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=at::TensorBase
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=at::TensorBase
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::TensorBase>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBase.h(933): note: see reference to class template instantiation 'c10::optional<at::TensorBase>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::TensorBase
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::Tensor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=at::Tensor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=at::Tensor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::Tensor>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBody.h(512): note: see reference to class template instantiation 'c10::optional<at::Tensor>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::Tensor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::Generator
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=at::Generator
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=at::Generator
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::Generator>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBody.h(589): note: see reference to class template instantiation 'c10::optional<at::Generator>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::Generator
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::Scalar
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::Scalar
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::Scalar
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::Scalar>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBody.h(617): note: see reference to class template instantiation 'c10::optional<c10::Scalar>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::Scalar
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::string
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::string
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::string
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::string>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type_base.h(450): note: see reference to class template instantiation 'c10::optional<std::string>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::string
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::QualifiedName
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::QualifiedName
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::QualifiedName
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::QualifiedName>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type_base.h(698): note: see reference to class template instantiation 'c10::optional<c10::QualifiedName>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::QualifiedName
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::shared_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::shared_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::shared_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::shared_ptr<torch::jit::CompilationUnit>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue.h(1416): note: see reference to class template instantiation 'c10::optional<std::shared_ptr<torch::jit::CompilationUnit>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::shared_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::weak_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::weak_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::weak_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::weak_ptr<torch::jit::CompilationUnit>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue.h(1417): note: see reference to class template instantiation 'c10::optional<std::weak_ptr<torch::jit::CompilationUnit>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::weak_ptr<torch::jit::CompilationUnit>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(483): note: see reference to class template instantiation 'c10::optional<std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<bool,std::allocator<bool>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<bool,std::allocator<bool>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<bool,std::allocator<bool>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<bool,std::allocator<bool>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(442): note: see reference to class template instantiation 'c10::optional<std::vector<bool,std::allocator<bool>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<bool,std::allocator<bool>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(568): note: see reference to class template instantiation 'c10::optional<std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(844): note: see reference to class template instantiation 'c10::VaryingShape<c10::Stride>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(568): note: see reference to class template instantiation 'c10::optional<std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(614): note: see reference to class template instantiation 'c10::VaryingShape<int64_t>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<int64_t,std::allocator<int64_t>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<int64_t,std::allocator<int64_t>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<int64_t,std::allocator<int64_t>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<int64_t,std::allocator<int64_t>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(727): note: see reference to class template instantiation 'c10::optional<std::vector<int64_t,std::allocator<int64_t>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<int64_t,std::allocator<int64_t>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/impl/InlineDeviceGuard.h(427): note: see reference to class template instantiation 'c10::optional<c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/DeviceGuard.h(178): note: see reference to class template instantiation 'c10::impl::InlineOptionalDeviceGuard<c10::impl::VirtualGuardImpl>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/impl/InlineStreamGuard.h(197): note: see reference to class template instantiation 'c10::optional<c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/StreamGuard.h(139): note: see reference to class template instantiation 'c10::impl::InlineOptionalStreamGuard<c10::impl::VirtualGuardImpl>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::VirtualGuardImpl
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::impl::VirtualGuardImpl
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::impl::VirtualGuardImpl
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::VirtualGuardImpl>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/impl/InlineStreamGuard.h(232): note: see reference to class template instantiation 'c10::optional<T>' being compiled
                with
                [
                    T=c10::impl::VirtualGuardImpl
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/StreamGuard.h(162): note: see reference to class template instantiation 'c10::impl::InlineMultiStreamGuard<c10::impl::VirtualGuardImpl>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::VirtualGuardImpl
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue_inl.h(853): note: see reference to class template instantiation 'c10::optional<std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::autograd::ViewInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::autograd::ViewInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::autograd::ViewInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::autograd::ViewInfo>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/autograd/variable.h(570): note: see reference to class template instantiation 'c10::optional<torch::autograd::ViewInfo>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::autograd::ViewInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::IValue
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::IValue
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::IValue
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::IValue>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/function_schema.h(183): note: see reference to class template instantiation 'c10::optional<c10::IValue>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::IValue
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::AliasInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::AliasInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::AliasInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::AliasInfo>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/function_schema.h(28): note: see reference to class template instantiation 'c10::optional<c10::AliasInfo>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::AliasInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::tuple<std::string,size_t,size_t>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::tuple<std::string,size_t,size_t>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::tuple<std::string,size_t,size_t>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::tuple<std::string,size_t,size_t>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/frontend/source_range.h(357): note: see reference to class template instantiation 'c10::optional<std::tuple<std::string,size_t,size_t>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::tuple<std::string,size_t,size_t>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::SourceRange
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::jit::SourceRange
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::jit::SourceRange
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::SourceRange>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/frontend/source_range.h(380): note: see reference to class template instantiation 'c10::optional<torch::jit::SourceRange>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::SourceRange
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::InlinedCallStackPtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::jit::InlinedCallStackPtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::jit::InlinedCallStackPtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::InlinedCallStackPtr>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/ir/scope.h(127): note: see reference to class template instantiation 'c10::optional<torch::jit::InlinedCallStackPtr>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::InlinedCallStackPtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::ModuleInstanceInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::jit::ModuleInstanceInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::jit::ModuleInstanceInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::ModuleInstanceInfo>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/ir/scope.h(140): note: see reference to class template instantiation 'c10::optional<torch::jit::ModuleInstanceInfo>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::ModuleInstanceInfo
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::ScopePtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::jit::ScopePtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::jit::ScopePtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::ScopePtr>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/ir/constants.h(29): note: see reference to class template instantiation 'c10::optional<torch::jit::ScopePtr>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::ScopePtr
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<T,std::allocator<T>>>' being compiled
                with
                [
                    T=c10::SymInt
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue.h(83): note: see reference to class template instantiation 'c10::optional<std::vector<T,std::allocator<T>>>' being compiled
                with
                [
                    T=c10::SymInt
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h(376): note: see reference to class template instantiation 'c10::OptionalArray<c10::SymInt>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h(386): note: see reference to class template instantiation 'c10::impl::ivalue_to_arg<c10::OptionalArray<c10::SymInt>,AllowDeprecatedTypes>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::AnnotatedSchema
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::impl::AnnotatedSchema
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::impl::AnnotatedSchema
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::AnnotatedSchema>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/dispatch/OperatorEntry.h(223): note: see reference to class template instantiation 'c10::optional<c10::impl::AnnotatedSchema>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::AnnotatedSchema
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::OperatorEntry::CppSignatureWithDebug
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::impl::OperatorEntry::CppSignatureWithDebug
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::impl::OperatorEntry::CppSignatureWithDebug
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::OperatorEntry::CppSignatureWithDebug>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/dispatch/OperatorEntry.h(286): note: see reference to class template instantiation 'c10::optional<c10::impl::OperatorEntry::CppSignatureWithDebug>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::impl::OperatorEntry::CppSignatureWithDebug
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::StepCallbacks
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=at::StepCallbacks
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=at::StepCallbacks
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::StepCallbacks>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/dispatch/Dispatcher.h(625): note: see reference to class template instantiation 'c10::optional<at::StepCallbacks>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::StepCallbacks
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::either<c10::OperatorName,c10::FunctionSchema>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::either<c10::OperatorName,c10::FunctionSchema>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::either<c10::OperatorName,c10::FunctionSchema>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::either<c10::OperatorName,c10::FunctionSchema>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/op_registration/op_registration.h(434): note: see reference to class template instantiation 'c10::optional<c10::either<c10::OperatorName,c10::FunctionSchema>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::either<c10::OperatorName,c10::FunctionSchema>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::ThreadLocalState
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=at::ThreadLocalState
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=at::ThreadLocalState
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::ThreadLocalState>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/runtime/interpreter.h(150): note: see reference to class template instantiation 'c10::optional<at::ThreadLocalState>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=at::ThreadLocalState
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::shared_ptr<torch::jit::Graph>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::shared_ptr<torch::jit::Graph>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::shared_ptr<torch::jit::Graph>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::shared_ptr<torch::jit::Graph>>' being compiled
        C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\array(594): note: see reference to class template instantiation 'c10::optional<std::shared_ptr<torch::jit::Graph>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/function_impl.h(165): note: see reference to class template instantiation 'std::array<c10::optional<std::shared_ptr<torch::jit::Graph>>,4>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::shared_ptr<torch::jit::Graph>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::GraphExecutor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::jit::GraphExecutor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::jit::GraphExecutor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::GraphExecutor>' being compiled
        C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\array(594): note: see reference to class template instantiation 'c10::optional<torch::jit::GraphExecutor>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/function_impl.h(179): note: see reference to class template instantiation 'std::array<c10::optional<torch::jit::GraphExecutor>,4>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::GraphExecutor
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::Method
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::jit::Method
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::jit::Method
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::Method>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/object.h(46): note: see reference to class template instantiation 'c10::optional<torch::jit::Method>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::jit::Method
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<std::string,std::allocator<std::string>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<std::string,std::allocator<std::string>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<std::string,std::allocator<std::string>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<std::string,std::allocator<std::string>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/module.h(304): note: see reference to class template instantiation 'c10::optional<std::vector<std::string,std::allocator<std::string>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<std::string,std::allocator<std::string>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::DimVector
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=c10::DimVector
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=c10::DimVector
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::DimVector>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/TensorIterator.h(915): note: see reference to class template instantiation 'c10::optional<c10::DimVector>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=c10::DimVector
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::function<void (const torch::autograd::profiler::thread_event_lists &)>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/autograd/profiler_legacy.h(410): note: see reference to class template instantiation 'c10::optional<std::function<void (const torch::autograd::profiler::thread_event_lists &)>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/options/loss.h(453): note: see reference to class template instantiation 'c10::optional<torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<double,std::allocator<double>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<double,std::allocator<double>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<double,std::allocator<double>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<T,std::allocator<T>>>' being compiled
                with
                [
                    T=double
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/options/upsampling.h(27): note: see reference to class template instantiation 'c10::optional<std::vector<T,std::allocator<T>>>' being compiled
                with
                [
                    T=double
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<double,std::allocator<double>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::tuple<at::Tensor,at::Tensor>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::tuple<at::Tensor,at::Tensor>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::tuple<at::Tensor,at::Tensor>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::tuple<at::Tensor,at::Tensor>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/modules/rnn.h(165): note: see reference to class template instantiation 'c10::optional<std::tuple<at::Tensor,at::Tensor>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::tuple<at::Tensor,at::Tensor>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<at::Tensor,std::allocator<at::Tensor>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
                with
                [
                    T=std::vector<at::Tensor,std::allocator<at::Tensor>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
                with
                [
                    T=std::vector<at::Tensor,std::allocator<at::Tensor>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<at::Tensor,std::allocator<at::Tensor>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/optim/lbfgs.h(50): note: see reference to class template instantiation 'c10::optional<std::vector<at::Tensor,std::allocator<at::Tensor>>>' being compiled
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
                with
                [
                    T=std::vector<at::Tensor,std::allocator<at::Tensor>>
                ]
        C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\pybind11\detail/common.h(152): warning C4005: 'HAVE_SNPRINTF': macro redefinition
        C:\Users\Master Lee\.conda\envs\pillarnext\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(54): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(55): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(56): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(63): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(64): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(65): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(77): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(78): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(79): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(84): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(85): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(86): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(97): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(98): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(99): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(104): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(105): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(106): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(139): error C2131: expression did not evaluate to a constant
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(123): note: failure was caused by a read of a variable outside its lifetime
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(123): note: see usage of 'boxes_num'
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(116): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(120): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(121): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(189): error C2131: expression did not evaluate to a constant
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(173): note: failure was caused by a read of a variable outside its lifetime
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(173): note: see usage of 'boxes_num'
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(166): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(170): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
        D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(171): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
        ninja: build stopped: subcommand failed.
        Traceback (most recent call last):
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 1900, in _run_ninja_build
            subprocess.run(
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\subprocess.py", line 512, in run
            raise CalledProcessError(retcode, process.args,
        subprocess.CalledProcessError: Command '['ninja', '-v']' returned non-zero exit status 1.

        The above exception was the direct cause of the following exception:

        Traceback (most recent call last):
          File "<string>", line 2, in <module>
          File "<pip-setuptools-caller>", line 34, in <module>
          File "D:\Craft\EXPERIMENTS\pillarnext-main\setup.py", line 18, in <module>
            setup(
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\__init__.py", line 107, in setup
            return distutils.core.setup(**attrs)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\core.py", line 185, in setup
            return run_commands(dist)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\core.py", line 201, in run_commands
            dist.run_commands()
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\dist.py", line 969, in run_commands
            self.run_command(cmd)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\dist.py", line 1234, in run_command
            super().run_command(command)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\dist.py", line 988, in run_command
            cmd_obj.run()
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\develop.py", line 34, in run
            self.install_for_development()
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\develop.py", line 111, in install_for_development
            self.run_command('build_ext')
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\cmd.py", line 318, in run_command
            self.distribution.run_command(command)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\dist.py", line 1234, in run_command
            super().run_command(command)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\dist.py", line 988, in run_command
            cmd_obj.run()
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\build_ext.py", line 84, in run
            _build_ext.run(self)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 345, in run
            self.build_extensions()
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 843, in build_extensions
            build_ext.build_extensions(self)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 467, in build_extensions
            self._build_extensions_serial()
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 493, in _build_extensions_serial
            self.build_extension(ext)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\build_ext.py", line 246, in build_extension
            _build_ext.build_extension(self, ext)
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 548, in build_extension
            objects = self.compiler.compile(
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 815, in win_wrap_ninja_compile
            _write_ninja_file_and_compile_objects(
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 1573, in _write_ninja_file_and_compile_objects
            _run_ninja_build(
          File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 1916, in _run_ninja_build
            raise RuntimeError(message) from e
        RuntimeError: Error compiling objects for extension
        [end of output]

    note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× python setup.py develop did not run successfully.
│ exit code: 1
╰─> [1111 lines of output]
    running develop
    running egg_info
    writing det3d.egg-info\PKG-INFO
    writing dependency_links to det3d.egg-info\dependency_links.txt
    writing top-level names to det3d.egg-info\top_level.txt
    reading manifest file 'det3d.egg-info\SOURCES.txt'
    adding license file 'LICENSE'
    writing manifest file 'det3d.egg-info\SOURCES.txt'
    running build_ext
    building 'det3d.core.iou3d_nms.iou3d_nms_cuda' extension
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated.
    !!

            ********************************************************************************
            Please avoid running ``setup.py`` and ``easy_install``.
            Instead, use pypa/build, pypa/installer or other
            standards-based tools.

            See https://github.com/pypa/setuptools/issues/917 for details.
            ********************************************************************************

    !!
      easy_install.initialize_options(self)
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
    !!

            ********************************************************************************
            Please avoid running ``setup.py`` directly.
            Instead, use pypa/build, pypa/installer or other
            standards-based tools.

            See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
            ********************************************************************************

    !!
      self.initialize_options()
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py:358: UserWarning: Error checking compiler version for cl: [WinError 2] The system cannot find the file specified
      warnings.warn(f'Error checking compiler version for {compiler}: {error}')
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py:387: UserWarning: The detected CUDA version (11.3) has a minor version mismatch with the version that was used to compile PyTorch (11.6). Most likely this shouldn't be a problem.
      warnings.warn(CUDA_MISMATCH_WARN.format(cuda_str_version, torch.version.cuda))
    Emitting ninja build file D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\build.ninja...
    Compiling objects...
    Allowing ninja to set a default number of workers... (overridable by setting the environment variable MAX_JOBS=N)
    [1/2] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\bin\nvcc --generate-dependencies-with-compile --dependency-output D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj.d --use-local-env -Xcompiler /MD -Xcompiler /wd4819 -Xcompiler /wd4251 -Xcompiler /wd4244 -Xcompiler /wd4267 -Xcompiler /wd4275 -Xcompiler /wd4018 -Xcompiler /wd4190 -Xcompiler /EHsc -Xcudafe --diag_suppress=base_class_has_different_dll_interface -Xcudafe --diag_suppress=field_without_dll_interface -Xcudafe --diag_suppress=dll_interface_conflict_none_assumed -Xcudafe --diag_suppress=dll_interface_conflict_dllexport_assumed "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu -o D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -O2 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_86,code=compute_86 -gencode=arch=compute_86,code=sm_86
    FAILED: D:/Craft/EXPERIMENTS/pillarnext-main/build/temp.win-amd64-cpython-38/Release/det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj
    C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\bin\nvcc --generate-dependencies-with-compile --dependency-output D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj.d --use-local-env -Xcompiler /MD -Xcompiler /wd4819 -Xcompiler /wd4251 -Xcompiler /wd4244 -Xcompiler /wd4267 -Xcompiler /wd4275 -Xcompiler /wd4018 -Xcompiler /wd4190 -Xcompiler /EHsc -Xcudafe --diag_suppress=base_class_has_different_dll_interface -Xcudafe --diag_suppress=field_without_dll_interface -Xcudafe --diag_suppress=dll_interface_conflict_none_assumed -Xcudafe --diag_suppress=dll_interface_conflict_dllexport_assumed "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu -o D:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms_kernel.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -O2 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_86,code=compute_86 -gencode=arch=compute_86,code=sm_86
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu(77): error: identifier "EPS" is undefined in device code

    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu(233): error: identifier "EPS" is undefined in device code

    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms_kernel.cu(337): error: identifier "EPS" is undefined in device code

    3 errors detected in the compilation of "D:/Craft/EXPERIMENTS/pillarnext-main/det3d/core/iou3d_nms/src/iou3d_nms_kernel.cu".

    iou3d_nms_kernel.cu

    [2/2] cl /showIncludes /nologo /O2 /W3 /GL /DNDEBUG /MD /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /EHsc "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp /FoD:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms.obj -g "-I /usr/local/cuda/include" -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 /std:c++14
    FAILED: D:/Craft/EXPERIMENTS/pillarnext-main/build/temp.win-amd64-cpython-38/Release/det3d/core/iou3d_nms/src/iou3d_nms.obj
    cl /showIncludes /nologo /O2 /W3 /GL /DNDEBUG /MD /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /EHsc "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\TH" "-IC:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\THC" "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\include" "-IC:\Users\Master Lee\.conda\envs\pillarnext\Include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" -c D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp /FoD:\Craft\EXPERIMENTS\pillarnext-main\build\temp.win-amd64-cpython-38\Release\det3d/core/iou3d_nms/src/iou3d_nms.obj -g "-I /usr/local/cuda/include" -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=iou3d_nms_cuda -D_GLIBCXX_USE_CXX11_ABI=0 /std:c++14
    cl : Command line warning D9002 : ignoring unknown option '-g'
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/macros/Macros.h(138): warning C4067: unexpected tokens following preprocessor directive - expected a newline
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::SymInt
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::SymInt
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::SymInt
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::SymInt>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/TensorImpl.h(1580): note: see reference to class template instantiation 'c10::optional<c10::SymInt>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::SymInt
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/TensorImpl.h(2688): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::TensorBase
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=at::TensorBase
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=at::TensorBase
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::TensorBase>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBase.h(933): note: see reference to class template instantiation 'c10::optional<at::TensorBase>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::TensorBase
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::Tensor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=at::Tensor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=at::Tensor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::Tensor>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBody.h(512): note: see reference to class template instantiation 'c10::optional<at::Tensor>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::Tensor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::Generator
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=at::Generator
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=at::Generator
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::Generator>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBody.h(589): note: see reference to class template instantiation 'c10::optional<at::Generator>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::Generator
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::Scalar
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::Scalar
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::Scalar
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::Scalar>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/TensorBody.h(617): note: see reference to class template instantiation 'c10::optional<c10::Scalar>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::Scalar
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::string
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::string
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::string
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::string>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type_base.h(450): note: see reference to class template instantiation 'c10::optional<std::string>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::string
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::QualifiedName
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::QualifiedName
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::QualifiedName
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::QualifiedName>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type_base.h(698): note: see reference to class template instantiation 'c10::optional<c10::QualifiedName>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::QualifiedName
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::shared_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::shared_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::shared_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::shared_ptr<torch::jit::CompilationUnit>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue.h(1416): note: see reference to class template instantiation 'c10::optional<std::shared_ptr<torch::jit::CompilationUnit>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::shared_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::weak_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::weak_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::weak_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::weak_ptr<torch::jit::CompilationUnit>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue.h(1417): note: see reference to class template instantiation 'c10::optional<std::weak_ptr<torch::jit::CompilationUnit>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::weak_ptr<torch::jit::CompilationUnit>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(483): note: see reference to class template instantiation 'c10::optional<std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<bool,std::allocator<bool>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<bool,std::allocator<bool>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<bool,std::allocator<bool>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<bool,std::allocator<bool>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(442): note: see reference to class template instantiation 'c10::optional<std::vector<bool,std::allocator<bool>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<bool,std::allocator<bool>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(568): note: see reference to class template instantiation 'c10::optional<std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(844): note: see reference to class template instantiation 'c10::VaryingShape<c10::Stride>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::optional<c10::Stride>,std::allocator<c10::optional<c10::Stride>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(568): note: see reference to class template instantiation 'c10::optional<std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(614): note: see reference to class template instantiation 'c10::VaryingShape<int64_t>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::optional<int64_t>,std::allocator<c10::optional<int64_t>>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<int64_t,std::allocator<int64_t>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<int64_t,std::allocator<int64_t>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<int64_t,std::allocator<int64_t>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<int64_t,std::allocator<int64_t>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/jit_type.h(727): note: see reference to class template instantiation 'c10::optional<std::vector<int64_t,std::allocator<int64_t>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<int64_t,std::allocator<int64_t>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/impl/InlineDeviceGuard.h(427): note: see reference to class template instantiation 'c10::optional<c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/DeviceGuard.h(178): note: see reference to class template instantiation 'c10::impl::InlineOptionalDeviceGuard<c10::impl::VirtualGuardImpl>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/impl/InlineStreamGuard.h(197): note: see reference to class template instantiation 'c10::optional<c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/StreamGuard.h(139): note: see reference to class template instantiation 'c10::impl::InlineOptionalStreamGuard<c10::impl::VirtualGuardImpl>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::VirtualGuardImpl
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::impl::VirtualGuardImpl
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::impl::VirtualGuardImpl
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::VirtualGuardImpl>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/impl/InlineStreamGuard.h(232): note: see reference to class template instantiation 'c10::optional<T>' being compiled
            with
            [
                T=c10::impl::VirtualGuardImpl
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/core/StreamGuard.h(162): note: see reference to class template instantiation 'c10::impl::InlineMultiStreamGuard<c10::impl::VirtualGuardImpl>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::VirtualGuardImpl
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue_inl.h(853): note: see reference to class template instantiation 'c10::optional<std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::ivalue::Future::WeakStorage,std::allocator<c10::ivalue::Future::WeakStorage>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::autograd::ViewInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::autograd::ViewInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::autograd::ViewInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::autograd::ViewInfo>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/autograd/variable.h(570): note: see reference to class template instantiation 'c10::optional<torch::autograd::ViewInfo>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::autograd::ViewInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::IValue
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::IValue
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::IValue
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::IValue>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/function_schema.h(183): note: see reference to class template instantiation 'c10::optional<c10::IValue>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::IValue
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::AliasInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::AliasInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::AliasInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::AliasInfo>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/function_schema.h(28): note: see reference to class template instantiation 'c10::optional<c10::AliasInfo>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::AliasInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::tuple<std::string,size_t,size_t>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::tuple<std::string,size_t,size_t>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::tuple<std::string,size_t,size_t>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::tuple<std::string,size_t,size_t>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/frontend/source_range.h(357): note: see reference to class template instantiation 'c10::optional<std::tuple<std::string,size_t,size_t>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::tuple<std::string,size_t,size_t>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::SourceRange
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::jit::SourceRange
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::jit::SourceRange
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::SourceRange>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/frontend/source_range.h(380): note: see reference to class template instantiation 'c10::optional<torch::jit::SourceRange>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::SourceRange
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::InlinedCallStackPtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::jit::InlinedCallStackPtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::jit::InlinedCallStackPtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::InlinedCallStackPtr>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/ir/scope.h(127): note: see reference to class template instantiation 'c10::optional<torch::jit::InlinedCallStackPtr>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::InlinedCallStackPtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::ModuleInstanceInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::jit::ModuleInstanceInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::jit::ModuleInstanceInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::ModuleInstanceInfo>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/ir/scope.h(140): note: see reference to class template instantiation 'c10::optional<torch::jit::ModuleInstanceInfo>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::ModuleInstanceInfo
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::ScopePtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::jit::ScopePtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::jit::ScopePtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::ScopePtr>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/ir/constants.h(29): note: see reference to class template instantiation 'c10::optional<torch::jit::ScopePtr>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::ScopePtr
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<T,std::allocator<T>>>' being compiled
            with
            [
                T=c10::SymInt
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/ivalue.h(83): note: see reference to class template instantiation 'c10::optional<std::vector<T,std::allocator<T>>>' being compiled
            with
            [
                T=c10::SymInt
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h(376): note: see reference to class template instantiation 'c10::OptionalArray<c10::SymInt>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h(386): note: see reference to class template instantiation 'c10::impl::ivalue_to_arg<c10::OptionalArray<c10::SymInt>,AllowDeprecatedTypes>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<c10::SymInt,std::allocator<c10::SymInt>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::AnnotatedSchema
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::impl::AnnotatedSchema
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::impl::AnnotatedSchema
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::AnnotatedSchema>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/dispatch/OperatorEntry.h(223): note: see reference to class template instantiation 'c10::optional<c10::impl::AnnotatedSchema>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::AnnotatedSchema
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::OperatorEntry::CppSignatureWithDebug
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::impl::OperatorEntry::CppSignatureWithDebug
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::impl::OperatorEntry::CppSignatureWithDebug
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::OperatorEntry::CppSignatureWithDebug>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/dispatch/OperatorEntry.h(286): note: see reference to class template instantiation 'c10::optional<c10::impl::OperatorEntry::CppSignatureWithDebug>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::impl::OperatorEntry::CppSignatureWithDebug
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::StepCallbacks
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=at::StepCallbacks
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=at::StepCallbacks
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::StepCallbacks>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/dispatch/Dispatcher.h(625): note: see reference to class template instantiation 'c10::optional<at::StepCallbacks>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::StepCallbacks
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::either<c10::OperatorName,c10::FunctionSchema>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::either<c10::OperatorName,c10::FunctionSchema>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::either<c10::OperatorName,c10::FunctionSchema>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::either<c10::OperatorName,c10::FunctionSchema>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/core/op_registration/op_registration.h(434): note: see reference to class template instantiation 'c10::optional<c10::either<c10::OperatorName,c10::FunctionSchema>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::either<c10::OperatorName,c10::FunctionSchema>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::ThreadLocalState
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=at::ThreadLocalState
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=at::ThreadLocalState
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<at::ThreadLocalState>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/runtime/interpreter.h(150): note: see reference to class template instantiation 'c10::optional<at::ThreadLocalState>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=at::ThreadLocalState
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::shared_ptr<torch::jit::Graph>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::shared_ptr<torch::jit::Graph>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::shared_ptr<torch::jit::Graph>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::shared_ptr<torch::jit::Graph>>' being compiled
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\array(594): note: see reference to class template instantiation 'c10::optional<std::shared_ptr<torch::jit::Graph>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/function_impl.h(165): note: see reference to class template instantiation 'std::array<c10::optional<std::shared_ptr<torch::jit::Graph>>,4>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::shared_ptr<torch::jit::Graph>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::GraphExecutor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::jit::GraphExecutor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::jit::GraphExecutor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::GraphExecutor>' being compiled
    C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\array(594): note: see reference to class template instantiation 'c10::optional<torch::jit::GraphExecutor>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/function_impl.h(179): note: see reference to class template instantiation 'std::array<c10::optional<torch::jit::GraphExecutor>,4>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::GraphExecutor
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::Method
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::jit::Method
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::jit::Method
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::Method>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/object.h(46): note: see reference to class template instantiation 'c10::optional<torch::jit::Method>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::jit::Method
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<std::string,std::allocator<std::string>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<std::string,std::allocator<std::string>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<std::string,std::allocator<std::string>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<std::string,std::allocator<std::string>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/jit/api/module.h(304): note: see reference to class template instantiation 'c10::optional<std::vector<std::string,std::allocator<std::string>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<std::string,std::allocator<std::string>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::DimVector
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=c10::DimVector
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=c10::DimVector
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<c10::DimVector>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\ATen/TensorIterator.h(915): note: see reference to class template instantiation 'c10::optional<c10::DimVector>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=c10::DimVector
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::function<void (const torch::autograd::profiler::thread_event_lists &)>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch/csrc/autograd/profiler_legacy.h(410): note: see reference to class template instantiation 'c10::optional<std::function<void (const torch::autograd::profiler::thread_event_lists &)>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::function<void (const torch::autograd::profiler::thread_event_lists &)>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/options/loss.h(453): note: see reference to class template instantiation 'c10::optional<torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<double,std::allocator<double>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<double,std::allocator<double>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<double,std::allocator<double>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<T,std::allocator<T>>>' being compiled
            with
            [
                T=double
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/options/upsampling.h(27): note: see reference to class template instantiation 'c10::optional<std::vector<T,std::allocator<T>>>' being compiled
            with
            [
                T=double
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<double,std::allocator<double>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::tuple<at::Tensor,at::Tensor>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::tuple<at::Tensor,at::Tensor>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::tuple<at::Tensor,at::Tensor>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::tuple<at::Tensor,at::Tensor>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/modules/rnn.h(165): note: see reference to class template instantiation 'c10::optional<std::tuple<at::Tensor,at::Tensor>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::tuple<at::Tensor,at::Tensor>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(212): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<at::Tensor,std::allocator<at::Tensor>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(411): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
            with
            [
                T=std::vector<at::Tensor,std::allocator<at::Tensor>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
            with
            [
                T=std::vector<at::Tensor,std::allocator<at::Tensor>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(554): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<at::Tensor,std::allocator<at::Tensor>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\torch\csrc\api\include\torch/optim/lbfgs.h(50): note: see reference to class template instantiation 'c10::optional<std::vector<at::Tensor,std::allocator<at::Tensor>>>' being compiled
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\c10/util/Optional.h(446): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
            with
            [
                T=std::vector<at::Tensor,std::allocator<at::Tensor>>
            ]
    C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\include\pybind11\detail/common.h(152): warning C4005: 'HAVE_SNPRINTF': macro redefinition
    C:\Users\Master Lee\.conda\envs\pillarnext\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(54): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(55): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(56): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(63): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(64): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(65): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(77): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(78): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(79): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(84): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(85): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(86): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(97): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(98): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(99): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(104): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(105): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(106): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(139): error C2131: expression did not evaluate to a constant
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(123): note: failure was caused by a read of a variable outside its lifetime
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(123): note: see usage of 'boxes_num'
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(116): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(120): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(121): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(189): error C2131: expression did not evaluate to a constant
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(173): note: failure was caused by a read of a variable outside its lifetime
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(173): note: see usage of 'boxes_num'
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(166): warning C4996: 'at::Tensor::type': Tensor.type() is deprecated. Instead use Tensor.options(), which in many cases (e.g. in a constructor) is a drop-in replacement. If you were using data from type(), that is now available from Tensor itself, so instead of tensor.type().scalar_type(), use tensor.scalar_type() instead and instead of tensor.type().backend() use tensor.device().
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(170): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    D:\Craft\EXPERIMENTS\pillarnext-main\det3d\core\iou3d_nms\src\iou3d_nms.cpp(171): warning C4996: 'at::Tensor::data': Tensor.data<T>() is deprecated. Please use Tensor.data_ptr<T>() instead.
    ninja: build stopped: subcommand failed.
    Traceback (most recent call last):
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 1900, in _run_ninja_build
        subprocess.run(
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\subprocess.py", line 512, in run
        raise CalledProcessError(retcode, process.args,
    subprocess.CalledProcessError: Command '['ninja', '-v']' returned non-zero exit status 1.

    The above exception was the direct cause of the following exception:

    Traceback (most recent call last):
      File "<string>", line 2, in <module>
      File "<pip-setuptools-caller>", line 34, in <module>
      File "D:\Craft\EXPERIMENTS\pillarnext-main\setup.py", line 18, in <module>
        setup(
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\__init__.py", line 107, in setup
        return distutils.core.setup(**attrs)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\core.py", line 185, in setup
        return run_commands(dist)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\core.py", line 201, in run_commands
        dist.run_commands()
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\dist.py", line 969, in run_commands
        self.run_command(cmd)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\dist.py", line 1234, in run_command
        super().run_command(command)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\dist.py", line 988, in run_command
        cmd_obj.run()
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\develop.py", line 34, in run
        self.install_for_development()
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\develop.py", line 111, in install_for_development
        self.run_command('build_ext')
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\cmd.py", line 318, in run_command
        self.distribution.run_command(command)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\dist.py", line 1234, in run_command
        super().run_command(command)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\dist.py", line 988, in run_command
        cmd_obj.run()
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\build_ext.py", line 84, in run
        _build_ext.run(self)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 345, in run
        self.build_extensions()
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 843, in build_extensions
        build_ext.build_extensions(self)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 467, in build_extensions
        self._build_extensions_serial()
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 493, in _build_extensions_serial
        self.build_extension(ext)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\command\build_ext.py", line 246, in build_extension
        _build_ext.build_extension(self, ext)
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\setuptools\_distutils\command\build_ext.py", line 548, in build_extension
        objects = self.compiler.compile(
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 815, in win_wrap_ninja_compile
        _write_ninja_file_and_compile_objects(
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 1573, in _write_ninja_file_and_compile_objects
        _run_ninja_build(
      File "C:\Users\Master Lee\.conda\envs\pillarnext\lib\site-packages\torch\utils\cpp_extension.py", line 1916, in _run_ninja_build
        raise RuntimeError(message) from e
    RuntimeError: Error compiling objects for extension
    [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
Konstantin5389 commented 8 months ago

第一个问题可能是由于pip install -e. 失败,导致没有c++拓展导致的 第二个问题,建议在Ubuntu环境下进行编译,不建议使用Windows