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
The functions in utils.h are inefficient.
I noticed that it takes about 9ms to run cvImageToTensor() and preprocessInception() on TX2. In contrast to this, the inference time of SSD (half precision) for batchsize=1 is 27ms.
There is a triple loop in cvImageToTensor(). Is it possible to let the compiler do the auto-vectorization? Or we need to manually reimplement these functions?
The text was updated successfully, but these errors were encountered:
The functions in utils.h are inefficient.
I noticed that it takes about 9ms to run cvImageToTensor() and preprocessInception() on TX2. In contrast to this, the inference time of SSD (half precision) for batchsize=1 is 27ms.
There is a triple loop in cvImageToTensor(). Is it possible to let the compiler do the auto-vectorization? Or we need to manually reimplement these functions?
The text was updated successfully, but these errors were encountered: