Triton: Serialized engine contains plugin, but no plugin factory was provided. #247
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?
I have generated a
.rt(.plan) file of a trainedyolo4tinyDarknet model by passing theweights,input_binsandout_binstotests/darknet/yolo4tiny.cpp.When I try to serve the generated
.planfile with Triton server, it fails to load the model with error:When I try to run
TritonwithLD_PRELOAD=libkernels.soit throws the below additional errorshow to create custom plugins
.sowith tkDNN? islibkernels.sothat was created while building thetkDNN, the custom plugins shared object? Can I generate the.rt(.plan) file by using inbuiltTRTplugins mentioned in the above log in place of custom plugins?I have built and run the
tritonserveron the same container in whichtkDNNis built and.rtfile is generated.The current tkdnn doesn't support plugins registry (which is why it doesn't work on trt8). You can try building the .so in this branch: https://github.com/TheExDeus/tkDNN/tree/feature/tensorrt8_support
TensorRT8 is now supported on tensorrt8 branch.