Skip to content

Commit 0c634f4

Browse files
Updated the correct link to Nvidia-docker support installation. Earlier it is re-directing to archived repo.
PiperOrigin-RevId: 726073729
1 parent 4e5dc63 commit 0c634f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

site/en/install/docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ be installed).
1818

1919
1. [Install Docker](https://docs.docker.com/install/) on
2020
your local *host* machine.
21-
2. For GPU support on Linux, [install NVIDIA Docker support](https://github.com/NVIDIA/nvidia-docker).
21+
2. For GPU support on Linux, [install NVIDIA Docker support](https://github.com/NVIDIA/nvidia-container-toolkit).
2222
* Take note of your Docker version with `docker -v`. Versions __earlier than__ 19.03 require nvidia-docker2 and the `--runtime=nvidia` flag. On versions __including and after__ 19.03, you will use the `nvidia-container-toolkit` package and the `--gpus all` flag. Both options are documented on the page linked above.
2323

2424
Note: To run the `docker` command without `sudo`, create the `docker` group and

tools/tensorflow_docs/tools/nblint/style/google.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def inclusive_language(args):
6565
found_words = search_wordlist(_INCLUSIVE_WORDLIST, args["cell_source"])
6666
if found_words:
6767
words = ", ".join([f"{word} => {alt}" for word, alt in found_words.items()])
68-
fail(f"Use inclusive language where possible and accurate. Found: {words} in {args['cell_source']}")
68+
fail(f"Use inclusive language where possible and accurate. Found: {words}")
6969
else:
7070
return True
7171

@@ -82,6 +82,6 @@ def second_person(args):
8282
found_words = search_wordlist(_SECOND_PERSON_WORDLIST, args["cell_source"])
8383
if found_words:
8484
words = ", ".join([f"{word} => {alt}" for word, alt in found_words.items()])
85-
fail(f"Prefer second person instead of first person. Found: {words} in {args['cell_source']}")
85+
fail(f"Prefer second person instead of first person. Found: {words}")
8686
else:
8787
return True

0 commit comments

Comments
 (0)