forked from NVlabs/instant-ngp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NVlabs#128 from NVlabs/memory-arena
Significant memory reduction through TCNN's new memory arena
- Loading branch information
Showing
6 changed files
with
138 additions
and
227 deletions.
There are no files selected for viewing
Submodule tiny-cuda-nn
updated
18 files
+19 −3 | include/tiny-cuda-nn/common.h | |
+2 −2 | include/tiny-cuda-nn/cutlass_matmul.h | |
+56 −58 | include/tiny-cuda-nn/encodings/grid.h | |
+105 −17 | include/tiny-cuda-nn/gpu_matrix.h | |
+227 −71 | include/tiny-cuda-nn/gpu_memory.h | |
+1 −0 | include/tiny-cuda-nn/network.h | |
+38 −93 | include/tiny-cuda-nn/network_with_input_encoding.h | |
+15 −18 | include/tiny-cuda-nn/networks/cutlass_mlp.h | |
+18 −21 | include/tiny-cuda-nn/networks/cutlass_resnet.h | |
+17 −18 | include/tiny-cuda-nn/networks/fully_fused_mlp.h | |
+8 −26 | include/tiny-cuda-nn/object.h | |
+1 −1 | include/tiny-cuda-nn/reduce_sum.h | |
+5 −4 | samples/mlp_learning_an_image.cu | |
+12 −0 | src/common.cu | |
+51 −81 | src/cutlass_mlp.cu | |
+62 −92 | src/cutlass_resnet.cu | |
+59 −78 | src/fully_fused_mlp.cu | |
+7 −7 | src/network.cu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.