Hi,
Request you to share the ONNX model and the script if not shared already so that we can assist you better.
Alongside you can try few things:
validating your model with the below snippet
check_model.py
import sys
import onnx
filename = yourONNXmodel
model = onnx.load(filename)
onnx.checker.check_model(model).
2) Try running your model with trtexec command.
In case you are still facing issue, request you to share the trtexec “”–verbose"" log for further debugging
Thanks!
Ive tried the solution by using version 8.4, it still freeze. Tested by using windows zip installation on windows 11
update: after clear and kill some background process that using gpu resources, manage to make it work.
update2: another go with wsl, checkout latest, make using dockerfile provide by the repo instead of pulling from nvidia catalog, still freeze as the same spot as provided log
We couldn’t reproduce the same error. We could successfully build the TRT engine.
Have you tried increasing workspace?
Could you please share with us Dockerfile to try from our end.