Trying to use GPU but got abnormal exit

Hi everyone,
I just installed mxnet with cuda8 on windows using the command

pip install mxnet-cu80

I have cuda installed,
So i run this

from mxnet import nd, gpu, runtime
features=runtime.Features()
print(features)
x = nd.random.uniform(shape=(2,2),ctx=gpu(0))

and i get this output:

[✔ CUDA, ✔ CUDNN, ✖ NCCL, ✔ CUDA_RTC, ✖ TENSORRT, ✖ CPU_SSE, ✖ CPU_SSE2, ✖ CPU_SSE3, ✖ CPU_SSE4_1, ✖ CPU_SSE4_2, ✖ CPU_SSE4A, ✖ CPU_AVX, ✖ CPU_AVX2, ✔ OPENMP, ✖ SSE, ✖ F16C, ✖ JEMALLOC, ✔ BLAS_OPEN, ✖ BLAS_ATLAS, ✖ BLAS_MKL, ✖ BLAS_APPLE, ✔ LAPACK, ✖ MKLDNN, ✔ OPENCV, ✖ CAFFE, ✖ PROFILER, ✖ DIST_KVSTORE, ✖ CXX14, ✖ INT64_TENSOR_SIZE, ✖ SIGNAL_HANDLER, ✖ DEBUG]

Process finished with exit code -1073740791 (0xC0000409)

Hi @tipavlos, can you try to install cuda10.1? Please follow the installation doc here https://d2l.ai/chapter_installation/index.html. Thanks!