Any updates if it works with new versions of cuda 11.8? #304
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
on 2070 gpu card,

Cuda failure: out of memory
/root/trt8/src/Conv2d.cpp:177
Aborting...
I've tested it up to Cuda 12.3, works fine. The memory error is because the tests are written around running it on a Jetson Xavier with unified memory. For normal GPUs you need to comment out this line so when it can just serialize the network without running it: https://github.com/ceccocats/tkDNN/blob/master/src/Conv2d.cpp#L176
And then you can load the network.rt file and run it later on.
@ckurtz22 What version of OpenCV did you have to use with CUDA 12?
I used the default opencv installation for Ubuntu 20.04, I believe it was 4.1. I also was able to build 4.8 from source and get it working without issue. I have not been using OpenCV with CUDA enabled,