Gabriel Cuendet

Results 9 comments of Gabriel Cuendet

Very nice to see more efficient knn search implementations for knn graph building! Is there anything still missing before merging the PR? Do you have a rough idea of when...

Hi @jonahclarsen ! I added simple CMakeLists.txt to the examples (amongst which the `int8/ptq` example you mention in this issue) on my branch on #1058 . Compiling and installing the...

Thanks. That makes perfect sense and I understand that this is not a supported use-case. I am just wondering if there might be a more elegant way to handle that...

The release notes for version 1.1.0 indicates > Torch-TensorRT 1.1.0 targets PyTorch 1.11, CUDA 11.3, cuDNN 8.2 and TensorRT 8.2. Due to recent JetPack upgrades, this release does not support...

Now that I have a second look at it, I think it's just your CMake. There are a few problems, but typically, when you do ``` target_link_libraries(example-app path/to/Torch-TensorRT/out/build/x64-Release/lib/torchtrt.lib) ``` you...

I think the main problem here is that you didn't install torchtrt. I am assuming that looking at: ``` 1> [CMake] CMake Error at C:/src/Torch-TensorRT/out/build/x64-Release/torchtrtConfig.cmake:35 (include): ``` which looks like...

That's a very good point! If my understanding is correct, on Linux, torch-tensorRT relies on static initialisation to register the Engine class with torch (see [here](https://github.com/pytorch/TensorRT/blob/master/core/runtime/register_jit_hooks.cpp#L15)). That works if you...

Great that you had it working @andreabonvini ! 😃 In my opinion, that issue is independent from the CMake support in itself. What I mean by that is: 1. The...

Hello. I also ported marching cube from old PCL kinfu, as requested in issues #10 and #12. Moreover, the colors are integrated to the generated mesh (in the same way...