Genzo1010 commited on
Commit
00d92ac
·
verified ·
1 Parent(s): 0992b79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -107,4 +107,15 @@ print("Is GPU available:", paddle.is_compiled_with_cuda())
107
  import tensorflow as tf
108
  print("Num GPUs Available: ", len(tf.config.list_physical_devices('GPU')))
109
  import tensorflow as tf
110
- print(tf.test.is_built_with_cuda())
 
 
 
 
 
 
 
 
 
 
 
 
107
  import tensorflow as tf
108
  print("Num GPUs Available: ", len(tf.config.list_physical_devices('GPU')))
109
  import tensorflow as tf
110
+ print("Where tensorflow is built with cuda:",tf.test.is_built_with_cuda())
111
+
112
+
113
+ import subprocess
114
+
115
+ # Run nvcc --version and capture the output
116
+ nvcc_version = subprocess.check_output(["nvcc", "--version"]).decode("utf-8")
117
+
118
+ # Print the output
119
+ print("This is the version of Nvcc:" ,nvcc_version)
120
+
121
+