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 2018/08/31 10:15:54 UTC

[GitHub] kardoszc edited a comment on issue #12255: Pretty high cpu load when import mxnet

kardoszc edited a comment on issue #12255: Pretty high cpu load when import mxnet
URL: https://github.com/apache/incubator-mxnet/issues/12255#issuecomment-417619511
 
 
   ```
   import ctypes
   import time
   
   start = time.time()
   ctypes.CDLL('libmxnet_1.1.so', ctypes.RTLD_LOCAL)
   print 'load libmxnet1.1.so', time.time() - start
   
   start = time.time()
   ctypes.CDLL('libmxnet_1.3.so', ctypes.RTLD_LOCAL)
   print 'load libmxnet1.3.so', time.time() - start
   ```
   
   ```
   load libmxnet1.1.so 0.0203261375427
   load libmxnet1.3.so 1.06584215164
   ```
   
   FYI,this might the reason why it costs too much time.

----------------------------------------------------------------
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