tiny-cuda-nn icon indicating copy to clipboard operation
tiny-cuda-nn copied to clipboard

Lightning fast C++/CUDA neural network framework

Results 203 tiny-cuda-nn issues
Sort by recently updated
recently updated
newest added

When I use the following command to compile: ```bash cmake --build build --config RelWithDebInfo -j ``` I encountered an error related to `fmt`. **Error message:** ```text /home/dl/csl/lidar-nerf/tiny-cuda-nn-master/dependencies/fmt/include/fmt/format.h(2592): warning: constexpr constructor...

Hi, My server has 3 different GPUs (A6000/Titan Xp/3090). I successfully installed tinycudann, but when I import tinycudann, it has the following warning: "UserWarning: System has multiple GPUs with different...

Hello, may I ask if there is a softmax function in the activation function here

python3.8/site-packages/tiny-cuda-nn/bindings/torch$ python setup.py install setup.py:5: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html from pkg_resources import parse_version Building PyTorch extension for tiny-cuda-nn version 1.7 /miniconda3/envs/scope/lib/python3.8/site-packages/torch/cuda/__init__.py:104: UserWarning: NVIDIA GeForce RTX...

The version of gcc/g++ and cmake matters! ![image](https://github.com/user-attachments/assets/63aa9953-7466-4a81-94a8-e8690bee8b61) And you are welcome.

File "/root/anaconda3/envs/insta/lib/python3.9/site-packages/torch/utils/cpp_extension.py", line 658, in unix_wrap_ninja_compile _write_ninja_file_and_compile_objects( File "/root/anaconda3/envs/insta/lib/python3.9/site-packages/torch/utils/cpp_extension.py", line 1573, in _write_ninja_file_and_compile_objects _run_ninja_build( File "/root/anaconda3/envs/insta/lib/python3.9/site-packages/torch/utils/cpp_extension.py", line 1916, in _run_ninja_build raise RuntimeError(message) from e RuntimeError: Error compiling objects for extension...

when i install nerfstudio, it need the tiny cuda as requirement. So I install the tiny cuda as instructions as >https://docs.nerf.studio/en/latest/quickstart/installation.html But I found this error : #RuntimeError: Error compiling...

Hi, I am trying to create a Docker image for nerfstudio based on this one: https://hub.docker.com/layers/dromni/nerfstudio/1.1.4/images/sha256-ff0107a7db96bb8ee29c638729328b832b268b890c50f2a2ff25988bb84d4f75?context=explore But the tiny-cuda-nn wheel build loops forever, not failing, but also not succeeding, until...

Hello, I have successfully installed tinycudann-2.0 on the 5090 GPU, but the code running failed. Has anyone run this on the 5090? It seems that the error message "You need...

gradients = torch.autograd.grad( outputs=potential.sum(), inputs=flat_points, create_graph=create_graph, retain_graph=True, only_inputs=True, allow_unused=True )[0] is there a way out. I am forced to use the traditional architecture(using MLP) self.block1 = nn.Sequential( nn.Linear(input_dim, hidden_dim), nn.ReLU(),...