Skip to content

Commit fcefb84

Browse files
fix: downgraded tensorflow to 2.15.1 in the GPU docker image as 2.16.1 can't detect a GPU (#28578)
1 parent e10c4e5 commit fcefb84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/gpu_framework_directory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def install_pkg(path, pkg, base="fw/"):
6767
)
6868
elif pkg.split("==")[0] if "==" in pkg else pkg == "tensorflow":
6969
subprocess.run(
70-
f"yes |pip install tensorflow[and-cuda] --target {path}",
70+
f"yes |pip install tensorflow[and-cuda]==2.15.1 --target {path}",
7171
shell=True,
7272
)
7373
else:

0 commit comments

Comments
 (0)