You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2019/02/21 02:24:14 UTC

[GitHub] Jessespace opened a new issue #14220: Qestion bout nd.waitall()

Jessespace opened a new issue #14220: Qestion bout nd.waitall()
URL: https://github.com/apache/incubator-mxnet/issues/14220
 
 
   I want to test the inference time about yolov3.I I wrote two versions.like bellow:
   
   1.`tic = time.time()
   class_IDs, scores, bounding_boxs = net(x)
   toc = time.time()
   print("Inference time is :",toc-tic)`
   
   2.`tic = time.time()
   class_IDs, scores, bounding_boxs = net(x)
   **nd.waitall()**
   toc = time.time()
   print("Inference time is :",toc-tic)`
   
   The results of the two versions vary greatly.Which one is right? and Why?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services