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 2020/03/25 19:27:19 UTC

[GitHub] [incubator-mxnet] TristonC commented on issue #17855: TensorRT does not work on other GPUs except GPU0

TristonC commented on issue #17855: TensorRT does not work on other GPUs except GPU0
URL: https://github.com/apache/incubator-mxnet/issues/17855#issuecomment-604039572
 
 
   It seems the TRT setting the device properly. If you accept a dirty workaround try replace ctx = mx.gpu(1) with these: 
   `from ctypes import cdll, c_char_p
   libcudart = cdll.LoadLibrary('libcudart.so')
   libcudart.cudaGetErrorString.restype = c_char_p
   def cudaSetDevice(device_idx):
       ret = libcudart.cudaSetDevice(device_idx)
       if ret != 0:
           error_string = libcudart.cudaGetErrorString(ret)
           raise RuntimeError("cudaSetDevice: " + error_string)
   
   device_id = 1
   cudaSetDevice(device_id)`
    

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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