Advertisement
lamiastella

Num GPUs Available: 0

Jun 7th, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. (djrn) [jalal@goku ~]$ pip freeze | grep tensorflow
  2. tensorflow-estimator==2.2.0
  3. tensorflow-gpu==2.2.0
  4. (djrn) [jalal@goku ~]$ python
  5. Python 3.8.5 (default, Mar 31 2021, 02:37:07)
  6. [GCC 7.3.1 20180303 (Red Hat 7.3.1-5)] on linux
  7. Type "help", "copyright", "credits" or "license" for more information.
  8. >>> import tensorflow as tf
  9. >>> print("Num GPUs Available: ", len(tf.config.list_physical_devices('GPU')))
  10. 2021-06-07 23:50:07.811271: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcuda.so.1
  11. 2021-06-07 23:50:07.867796: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1561] Found device 0 with properties:
  12. pciBusID: 0000:05:00.0 name: GeForce GTX 1080 Ti computeCapability: 6.1
  13. coreClock: 1.6705GHz coreCount: 28 deviceMemorySize: 10.92GiB deviceMemoryBandwidth: 451.17GiB/s
  14. 2021-06-07 23:50:07.869403: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1561] Found device 1 with properties:
  15. pciBusID: 0000:06:00.0 name: GeForce GTX 1080 Ti computeCapability: 6.1
  16. coreClock: 1.6705GHz coreCount: 28 deviceMemorySize: 10.92GiB deviceMemoryBandwidth: 451.17GiB/s
  17. 2021-06-07 23:50:07.870136: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libcudart.so.10.1'; dlerror: libcudart.so.10.1: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/local/cuda-10.0/lib64:
  18. 2021-06-07 23:50:07.874249: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcublas.so.10
  19. 2021-06-07 23:50:07.877819: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcufft.so.10
  20. 2021-06-07 23:50:07.878745: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcurand.so.10
  21. 2021-06-07 23:50:07.882687: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcusolver.so.10
  22. 2021-06-07 23:50:07.884788: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcusparse.so.10
  23. 2021-06-07 23:50:07.890952: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library libcudnn.so.7
  24. 2021-06-07 23:50:07.891011: W tensorflow/core/common_runtime/gpu/gpu_device.cc:1598] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.
  25. Skipping registering GPU devices...
  26. Num GPUs Available: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement