sxyu / svox2

Plenoxels: Radiance Fields without Neural Networks
BSD 2-Clause "Simplified" License
2.82k stars 360 forks source link

CUDA extension compile #53

Open parilo opened 2 years ago

parilo commented 2 years ago

Please add commands to compile CUDA extension to the README.

parilo commented 2 years ago

pip install doesn't show warning that CUDA extension is not compiled. To compile I had to figure out install all necessary packages (I even didn't have cuda compiler). So it would be useful to add instructions how it install or what to install to be able to compile CUDA extension.

Waffle1434 commented 2 years ago

How did you get the CUDA extension to compile? When I try to train I get stuck with:

Traceback (most recent call last):
  File "opt.py", line 285, in <module>
    grid = svox2.SparseGrid(reso=reso_list[reso_id],
  File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\svox2\svox2.py", line 535, in __init__
    self.accelerate()
  File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\svox2\svox2.py", line 1491, in accelerate
    assert (
AssertionError: CUDA extension is currently required for accelerate
Waffle1434 commented 2 years ago

I installed the Nvidia CUDA Toolkit: https://developer.nvidia.com/cuda-toolkit

on pip install . I got an error that CUB_HOME wasn't set... Set CUB_HOME to: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub... Now I'm getting:

Processing c:\users\waffle\desktop\svox2
  Preparing metadata (setup.py) ... done
Building wheels for collected packages: svox2
  Building wheel for svox2 (setup.py) ... error
  error: subprocess-exited-with-error

  × python setup.py bdist_wheel did not run successfully.
  │ exit code: 1
  ╰─> [1112 lines of output]
      running bdist_wheel
      running build
      running build_py
      package init file 'svox2\csrc\__init__.py' not found (or not a regular file)
      running build_ext
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\utils\cpp_extension.py:322: 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\utils\cpp_extension.py:788: UserWarning: The detected CUDA version (11.6) has a minor version mismatch with the version that was used to compile PyTorch (11.3). Most likely this shouldn't be a problem.
        warnings.warn(CUDA_MISMATCH_WARN.format(cuda_str_version, torch.version.cuda))
      building 'svox2.csrc' extension
      Emitting ninja build file C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\build.ninja...
      Compiling objects...
      Allowing ninja to set a default number of workers... (overridable by setting the environment variable MAX_JOBS=N)
      [1/8] cl /showIncludes /nologo /Ox /W3 /GL /DNDEBUG /MD /MD /wd4819 /wd4251 /wd4244 /wd4267 /wd4275 /wd4018 /wd4190 /EHsc -IC:\Users\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\svox2.cpp /FoC:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/svox2.obj -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 /std:c++14
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::InlineDeviceGuard<c10::impl::VirtualGuardImpl>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::TensorBase
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=at::TensorBase
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=at::TensorBase
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<at::TensorBase>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::TensorBase
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::Tensor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=at::Tensor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=at::Tensor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<at::Tensor>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/TensorBody.h(502): note: see reference to class template instantiation 'c10::optional<at::Tensor>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::Tensor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::Generator
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=at::Generator
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=at::Generator
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<at::Generator>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/TensorBody.h(576): note: see reference to class template instantiation 'c10::optional<at::Generator>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::Generator
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::DimVector
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=at::DimVector
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=at::DimVector
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<at::DimVector>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/TensorIterator.h(766): note: see reference to class template instantiation 'c10::optional<at::DimVector>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::DimVector
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::string
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=std::string
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=std::string
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::string>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type_base.h(443): note: see reference to class template instantiation 'c10::optional<std::string>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::string
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::QualifiedName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::QualifiedName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=c10::QualifiedName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::QualifiedName>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type_base.h(691): note: see reference to class template instantiation 'c10::optional<c10::QualifiedName>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::QualifiedName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::shared_ptr<torch::jit::CompilationUnit>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=std::shared_ptr<torch::jit::CompilationUnit>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::shared_ptr<torch::jit::CompilationUnit>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/ivalue.h(1241): note: see reference to class template instantiation 'c10::optional<std::shared_ptr<torch::jit::CompilationUnit>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::weak_ptr<torch::jit::CompilationUnit>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=std::weak_ptr<torch::jit::CompilationUnit>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::weak_ptr<torch::jit::CompilationUnit>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/ivalue.h(1242): note: see reference to class template instantiation 'c10::optional<std::weak_ptr<torch::jit::CompilationUnit>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type.h(460): note: see reference to class template instantiation 'c10::optional<std::vector<c10::ShapeSymbol,std::allocator<c10::ShapeSymbol>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type.h(545): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type.h(800): note: see reference to class template instantiation 'c10::VaryingShape<c10::Stride>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type.h(545): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type.h(591): note: see reference to class template instantiation 'c10::VaryingShape<int64_t>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<int64_t,std::allocator<int64_t>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/jit_type.h(704): note: see reference to class template instantiation 'c10::optional<std::vector<int64_t,std::allocator<int64_t>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::InlineStreamGuard<c10::impl::VirtualGuardImpl>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::VirtualGuardImpl
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::impl::VirtualGuardImpl
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=c10::impl::VirtualGuardImpl
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::VirtualGuardImpl>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::VirtualGuardImpl
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/ivalue_inl.h(834): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::autograd::ViewInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::autograd::ViewInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=torch::autograd::ViewInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<torch::autograd::ViewInfo>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/autograd/variable.h(525): note: see reference to class template instantiation 'c10::optional<torch::autograd::ViewInfo>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::autograd::ViewInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::IValue
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::IValue
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=c10::IValue
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::IValue>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/function_schema.h(162): note: see reference to class template instantiation 'c10::optional<c10::IValue>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::IValue
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::AliasInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::AliasInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=c10::AliasInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::AliasInfo>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/function_schema.h(26): note: see reference to class template instantiation 'c10::optional<c10::AliasInfo>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::AliasInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::either<c10::OperatorName,c10::FunctionSchema>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::either<c10::OperatorName,c10::FunctionSchema>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::either<c10::OperatorName,c10::FunctionSchema>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::AnnotatedSchema
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::impl::AnnotatedSchema
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=c10::impl::AnnotatedSchema
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::AnnotatedSchema>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/dispatch/OperatorEntry.h(212): note: see reference to class template instantiation 'c10::optional<c10::impl::AnnotatedSchema>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::AnnotatedSchema
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::OperatorEntry::CppSignatureWithDebug
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::impl::OperatorEntry::CppSignatureWithDebug
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=c10::impl::OperatorEntry::CppSignatureWithDebug
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::impl::OperatorEntry::CppSignatureWithDebug>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/core/dispatch/OperatorEntry.h(271): note: see reference to class template instantiation 'c10::optional<c10::impl::OperatorEntry::CppSignatureWithDebug>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::impl::OperatorEntry::CppSignatureWithDebug
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::OperatorName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=c10::OperatorName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=c10::OperatorName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<c10::OperatorName>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/record_function.h(327): note: see reference to class template instantiation 'c10::optional<c10::OperatorName>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=c10::OperatorName
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::RecordFunction::State
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=at::RecordFunction::State
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=at::RecordFunction::State
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<at::RecordFunction::State>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\ATen/record_function.h(356): note: see reference to class template instantiation 'c10::optional<at::RecordFunction::State>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::RecordFunction::State
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::tuple<std::string,size_t,size_t>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/jit/frontend/source_range.h(201): note: see reference to class template instantiation 'c10::optional<std::tuple<std::string,size_t,size_t>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::SourceRange
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::jit::SourceRange
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=torch::jit::SourceRange
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::SourceRange>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/jit/frontend/source_range.h(224): note: see reference to class template instantiation 'c10::optional<torch::jit::SourceRange>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::SourceRange
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::InlinedCallStackPtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::jit::InlinedCallStackPtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=torch::jit::InlinedCallStackPtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::InlinedCallStackPtr>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::InlinedCallStackPtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::ModuleInstanceInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::jit::ModuleInstanceInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=torch::jit::ModuleInstanceInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::ModuleInstanceInfo>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::ModuleInstanceInfo
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::ScopePtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::jit::ScopePtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=torch::jit::ScopePtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::ScopePtr>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::ScopePtr
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::ThreadLocalState
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=at::ThreadLocalState
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=at::ThreadLocalState
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<at::ThreadLocalState>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/jit/runtime/interpreter.h(149): note: see reference to class template instantiation 'c10::optional<at::ThreadLocalState>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=at::ThreadLocalState
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::shared_ptr<torch::jit::Graph>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=std::shared_ptr<torch::jit::Graph>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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(597): note: see reference to class template instantiation 'c10::optional<std::shared_ptr<torch::jit::Graph>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/jit/api/function_impl.h(135): note: see reference to class template instantiation 'std::array<c10::optional<std::shared_ptr<torch::jit::Graph>>,4>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::GraphExecutor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::jit::GraphExecutor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=torch::jit::GraphExecutor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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(597): note: see reference to class template instantiation 'c10::optional<torch::jit::GraphExecutor>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/jit/api/function_impl.h(149): note: see reference to class template instantiation 'std::array<c10::optional<torch::jit::GraphExecutor>,4>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::GraphExecutor
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::Method
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::jit::Method
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=torch::jit::Method
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<torch::jit::Method>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::jit::Method
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<std::string,std::allocator<std::string>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/jit/api/module.h(295): note: see reference to class template instantiation 'c10::optional<std::vector<std::string,std::allocator<std::string>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::function<void (const torch::autograd::profiler::thread_event_lists &)>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/autograd/profiler_legacy.h(400): note: see reference to class template instantiation 'c10::optional<std::function<void (const torch::autograd::profiler::thread_event_lists &)>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::vector<std::vector<int64_t,std::allocator<int64_t>>,std::allocator<std::vector<int64_t,std::allocator<int64_t>>>>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=std::vector<std::vector<int64_t,std::allocator<int64_t>>,std::allocator<std::vector<int64_t,std::allocator<int64_t>>>>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to class template instantiation 'c10::trivially_copyable_optimization_optional_base<T>' being compiled
              with
              [
                  T=std::vector<std::vector<int64_t,std::allocator<int64_t>>,std::allocator<std::vector<int64_t,std::allocator<int64_t>>>>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<std::vector<int64_t,std::allocator<int64_t>>,std::allocator<std::vector<int64_t,std::allocator<int64_t>>>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch/csrc/autograd/profiler_kineto.h(247): note: see reference to class template instantiation 'c10::optional<std::vector<std::vector<int64_t,std::allocator<int64_t>>,std::allocator<std::vector<int64_t,std::allocator<int64_t>>>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): warning C4624: 'c10::trivially_copyable_optimization_optional_base<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::vector<std::vector<int64_t,std::allocator<int64_t>>,std::allocator<std::vector<int64_t,std::allocator<int64_t>>>>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/options/loss.h(404): note: see reference to class template instantiation 'c10::optional<torch::nn::TripletMarginWithDistanceLossOptions::distance_function_t>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::vector<double,std::allocator<double>>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=std::vector<double,std::allocator<double>>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<T,std::allocator<T>>>' being compiled
              with
              [
                  T=double
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/options/upsampling.h(26): note: see reference to class template instantiation 'c10::optional<std::vector<T,std::allocator<T>>>' being compiled
              with
              [
                  T=double
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): warning C4624: 'c10::constexpr_storage_t<T>': destructor was implicitly defined as deleted
              with
              [
                  T=std::tuple<at::Tensor,at::Tensor>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): note: see reference to class template instantiation 'c10::constexpr_storage_t<T>' being compiled
              with
              [
                  T=std::tuple<at::Tensor,at::Tensor>
              ]
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::tuple<at::Tensor,at::Tensor>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include\torch/nn/modules/rnn.h(155): note: see reference to class template instantiation 'c10::optional<std::tuple<at::Tensor,at::Tensor>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(198): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(397): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(540): note: see reference to alias template instantiation 'c10::OptionalBase<std::vector<at::Tensor,std::allocator<at::Tensor>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include\torch/optim/lbfgs.h(46): note: see reference to class template instantiation 'c10::optional<std::vector<at::Tensor,std::allocator<at::Tensor>>>' being compiled
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\c10/util/Optional.h(432): 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\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      [2/8] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_svox1_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\render_svox1_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_svox1_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      FAILED: C:/Users/waffle/Desktop/svox2/build/temp.win-amd64-3.8/Release/svox2/csrc/render_svox1_kernel.obj
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_svox1_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\render_svox1_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_svox1_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1429): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1503): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      2 errors detected in the compilation of "C:/Users/waffle/Desktop/svox2/svox2/csrc/render_svox1_kernel.cu".
      render_svox1_kernel.cu
      [3/8] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_nvol.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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\render_lerp_kernel_nvol.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_nvol.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      FAILED: C:/Users/waffle/Desktop/svox2/build/temp.win-amd64-3.8/Release/svox2/csrc/render_lerp_kernel_nvol.obj
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_nvol.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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\render_lerp_kernel_nvol.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_nvol.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1429): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1503): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      2 errors detected in the compilation of "C:/Users/waffle/Desktop/svox2/svox2/csrc/render_lerp_kernel_nvol.cu".
      render_lerp_kernel_nvol.cu
      [4/8] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/optim_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\optim_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/optim_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      FAILED: C:/Users/waffle/Desktop/svox2/build/temp.win-amd64-3.8/Release/svox2/csrc/optim_kernel.obj
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/optim_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\optim_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/optim_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1429): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1503): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      2 errors detected in the compilation of "C:/Users/waffle/Desktop/svox2/svox2/csrc/optim_kernel.cu".
      optim_kernel.cu
      [5/8] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/svox2_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\svox2_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/svox2_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      FAILED: C:/Users/waffle/Desktop/svox2/build/temp.win-amd64-3.8/Release/svox2/csrc/svox2_kernel.obj
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/svox2_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\svox2_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/svox2_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1429): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1503): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      2 errors detected in the compilation of "C:/Users/waffle/Desktop/svox2/svox2/csrc/svox2_kernel.cu".
      svox2_kernel.cu
      [6/8] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_cuvol.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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\render_lerp_kernel_cuvol.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_cuvol.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      FAILED: C:/Users/waffle/Desktop/svox2/build/temp.win-amd64-3.8/Release/svox2/csrc/render_lerp_kernel_cuvol.obj
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_cuvol.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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\render_lerp_kernel_cuvol.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/render_lerp_kernel_cuvol.obj -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1429): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1503): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      2 errors detected in the compilation of "C:/Users/waffle/Desktop/svox2/svox2/csrc/render_lerp_kernel_cuvol.cu".
      render_lerp_kernel_cuvol.cu
      [7/8] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/misc_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\misc_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/misc_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      FAILED: C:/Users/waffle/Desktop/svox2/build/temp.win-amd64-3.8/Release/svox2/csrc/misc_kernel.obj
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/misc_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\misc_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/misc_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1429): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1503): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Desktop\svox2\svox2\csrc\misc_kernel.cu(57): warning #177-D: function "<unnamed>::device::accel_linf_dist_transform_kernel" was declared but never referenced

      2 errors detected in the compilation of "C:/Users/waffle/Desktop/svox2/svox2/csrc/misc_kernel.cu".
      misc_kernel.cu
      [8/8] C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/loss_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\loss_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/loss_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      FAILED: C:/Users/waffle/Desktop/svox2/build/temp.win-amd64-3.8/Release/svox2/csrc/loss_kernel.obj
      C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\bin\nvcc --generate-dependencies-with-compile --dependency-output C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/loss_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\waffle\Desktop\svox2\svox2\csrc\include "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include\cub" -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\torch\csrc\api\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\TH -IC:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\THC "-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.6\include" -IC:\Users\waffle\Miniconda3\envs\plenoxel\include -IC:\Users\waffle\Miniconda3\envs\plenoxel\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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 C:\Users\waffle\Desktop\svox2\svox2\csrc\loss_kernel.cu -o C:\Users\waffle\Desktop\svox2\build\temp.win-amd64-3.8\Release\svox2/csrc/loss_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 -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=csrc -D_GLIBCXX_USE_CXX11_ABI=0 -gencode=arch=compute_75,code=compute_75 -gencode=arch=compute_75,code=sm_75
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:/Users/waffle/Miniconda3/envs/plenoxel/lib/site-packages/torch/include\c10/macros/Macros.h(142): warning C4067: unexpected tokens following preprocessor directive - expected a newline
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\detail/common.h(108): warning C4005: 'HAVE_SNPRINTF': macro redefinition
      C:\Users\waffle\Miniconda3\envs\plenoxel\include\pyerrors.h(315): note: see previous definition of 'HAVE_SNPRINTF'
      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1429): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\include\pybind11\cast.h(1503): error: too few arguments for template template parameter "Tuple"
                detected during instantiation of class "pybind11::detail::tuple_caster<Tuple, Ts...> [with Tuple=std::pair, Ts=<T1, T2>]"
      (1507): here

      2 errors detected in the compilation of "C:/Users/waffle/Desktop/svox2/svox2/csrc/loss_kernel.cu".
      loss_kernel.cu
      ninja: build stopped: subcommand failed.
      Traceback (most recent call last):
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\utils\cpp_extension.py", line 1740, in _run_ninja_build
          subprocess.run(
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\subprocess.py", line 516, 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 "C:\Users\waffle\Desktop\svox2\setup.py", line 55, in <module>
          setup(
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\setuptools\__init__.py", line 153, in setup
          return distutils.core.setup(**attrs)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\core.py", line 148, in setup
          dist.run_commands()
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\dist.py", line 966, in run_commands
          self.run_command(cmd)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\dist.py", line 985, in run_command
          cmd_obj.run()
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\wheel\bdist_wheel.py", line 299, in run
          self.run_command('build')
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\cmd.py", line 313, in run_command
          self.distribution.run_command(command)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\dist.py", line 985, in run_command
          cmd_obj.run()
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\command\build.py", line 135, in run
          self.run_command(cmd_name)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\cmd.py", line 313, in run_command
          self.distribution.run_command(command)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\dist.py", line 985, in run_command
          cmd_obj.run()
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\setuptools\command\build_ext.py", line 79, in run
          _build_ext.run(self)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\command\build_ext.py", line 340, in run
          self.build_extensions()
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\utils\cpp_extension.py", line 741, in build_extensions
          build_ext.build_extensions(self)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\command\build_ext.py", line 449, in build_extensions
          self._build_extensions_serial()
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial
          self.build_extension(ext)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\setuptools\command\build_ext.py", line 202, in build_extension
          _build_ext.build_extension(self, ext)
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\distutils\command\build_ext.py", line 528, in build_extension
          objects = self.compiler.compile(sources,
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\utils\cpp_extension.py", line 714, in win_wrap_ninja_compile
          _write_ninja_file_and_compile_objects(
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\utils\cpp_extension.py", line 1419, in _write_ninja_file_and_compile_objects
          _run_ninja_build(
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\torch\utils\cpp_extension.py", line 1756, in _run_ninja_build
          raise RuntimeError(message) from e
      RuntimeError: Error compiling objects for extension
      Error in atexit._run_exitfuncs:
      Traceback (most recent call last):
        File "C:\Users\waffle\Miniconda3\envs\plenoxel\lib\site-packages\colorama\ansitowin32.py", line 59, in closed
          return stream.closed
      ValueError: underlying buffer has been detached
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for svox2
  Running setup.py clean for svox2
Failed to build svox2