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

Hi! Thanks for the great work! I have successfully installed pytorch binding, but when I run the script ``samples/mlp_learning_an_image_pytorch.py``, the following error appears: ``` Traceback (most recent call last): File...

Hi, when I use "# Option 2: separate modules. Slower but more flexible", I got the error as follows: Got cutlass error: Error Internal at: 364 May I ask how...

As title, are they stacked in the order of coarse to fine or it's the other way around?

Hi, Thank you for the code. It'll be very useful if documentation can be provided for the library, including some pointers to optimizations used. Thanks.

When running the repro below, I get a Warp Misaligned Address Exception: ``` #include "tiny-cuda-nn/trainer.h" int main(int argc, char **argv) { nlohmann::json network_config = { {"n_input_dims", 8}, {"otype", "CutlassMLP"}, {"output_activation",...

Hello, This is most likely a issue on my end, not the repo. But I am posting it here, because I thought that you here will probably know what is...

Hello, Now i have the same issue with [#74](https://github.com/NVlabs/tiny-cuda-nn/issues/74), but i used vs2019.16.11 and cuda 11.3, but i saw the compile error is the same, so could you someone give...

problem seems to stem from : `CUDACOMPILE : nvcc warning : The -std=c++14 flag is not supported with the configured host compiler. Flag will be ignored. [P:\opensource\tiny-cuda-nn\build\src\tiny-cuda-nn.vcxproj]` json cpp which...

Hello. First of all, thank you for releasing this cool work. I read the recent works and found this release. I have successfully built the tiny-cuda-nn and ran mlp_learning_an_image and...

Hi, is the below not supposed to be N_FEATURES_PER_ENTRY rather than N_FEATURES_PER_LEVEL. It's just a naming thing but its kind of confusing. I think the paper refers to this as...