Can't use GPU on TX2. I compile mxnet by myself(http://mxnet.incubator.apache.org/install/index.html
Linux-Python-GPU-Build from source),and there is no error while compiling. When I test my mxnet, there is an error.

Check failed: (err) == (cudaSuccess) Name: mxnet_generic_kernel ErrStr:no kernel image is available for execution on the device

TX2
CUDA 9.0 cuDNN 7.0
mxnet->master
I have solved this problem. The default CUDA_ARCH doesn't contain the TX2 's CUDA_ARCH. So we need to add "CUDA_ARCH = -gencode arch=compute_62,code=sm_62" to make/config.mk manually.
(https://discuss.gluon.ai/t/topic/6589)
Most helpful comment
I have solved this problem. The default CUDA_ARCH doesn't contain the TX2 's CUDA_ARCH. So we need to add "CUDA_ARCH = -gencode arch=compute_62,code=sm_62" to make/config.mk manually.
(https://discuss.gluon.ai/t/topic/6589)