You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue when I ran through Jetson Inference tutorials using the Python code examples. In all inference tasks using cudaOverlay function from the jetson_utils library, there is an error message indicated "More keyword list entries (5) than format specifiers (4)".
Diagnosis
The issue does not exist while running C++ code examples of the same tasks, indicating that the problem may be with the python binding of those Jetson util functions.
Fix
In utils/python/bindings/PyCUDA.cpp, the original arguments parsing code in PyCUDA_Overlay function was:
Description
I encountered an issue when I ran through Jetson Inference tutorials using the Python code examples. In all inference tasks using
cudaOverlay
function from thejetson_utils
library, there is an error message indicated "More keyword list entries (5) than format specifiers (4)".Diagnosis
The issue does not exist while running C++ code examples of the same tasks, indicating that the problem may be with the python binding of those Jetson util functions.
Fix
In
utils/python/bindings/PyCUDA.cpp
, the original arguments parsing code inPyCUDA_Overlay
function was:I modified it to:
It adds the fifth optional argument to match the signature. Make sure to rebuild before applying the change.
I hope this information is helpful. Thank you!
The text was updated successfully, but these errors were encountered: