Can I run my jupyter notebook that contains seaborn code on GPU?

后端 未结 3 2044
一整个雨季
一整个雨季 2021-01-25 04:08

I have CUDA compatible GPU (Nvidia GeForce 1060) in my system. While analyzing a bigger dataset, I often have to use pair plot function of the seaborn library, it consumes a lot

3条回答
  •  爱一瞬间的悲伤
    2021-01-25 04:38

    Is there a way I can run my entire notebook on GPU. I mean, apart from seaborn, I want to run all of my code on GPU, is it possible?

    In a word, no there is not. There is no way to run generic Python code or libraries on the GPU.

    I am aware that tensorflow and keras can be run on GPU.

    Neither tensorflow nor keras can be "run on" a GPU. They can accelerate parts of their computations with GPUs, but that process doesn't involve running a single line of Python on the GPU.

提交回复
热议问题