Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
+
|