-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Pallas TPU] Add a note in the Pallas Quickstart documentation about the instructions of running the existing example on TPU #23889
Merged
+56
−0
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
copybara-service
bot
force-pushed
the
test_678420788
branch
9 times, most recently
from
September 26, 2024 21:51
d7bd3a3
to
1673ef9
Compare
copybara-service
bot
changed the title
[Pallas TPU] Add a note in the Pallas Quickstart documentation about the instructions of running the existing example on TPU and some explanations about the difference in memory handling between TPUs and GPUs
[Pallas TPU] Add a note in the Pallas Quickstart documentation about the instructions of running the existing example on TPU
Sep 26, 2024
copybara-service
bot
force-pushed
the
test_678420788
branch
3 times, most recently
from
September 27, 2024 08:08
abf2dd7
to
0028c19
Compare
…the instructions of running the existing example on TPU This fixes #22817 This changes is originally proposed by @justinjfu in the comments of the above issue. This PR is related to #23885. PiperOrigin-RevId: 679487218
copybara-service
bot
force-pushed
the
test_678420788
branch
from
September 27, 2024 08:33
0028c19
to
ab4590c
Compare
copybara-service bot
pushed a commit
that referenced
this pull request
Oct 3, 2024
This PR uses the same method to add cross references as the previous PR #23889 --- The content below is for future references. Useful commands: ```sh # sync *.md to *.ipynb jupytext docs/pallas/quickstart.md -o docs/pallas/quickstart.ipynb # build documentation sphinx-build -b html -D nb_execution_mode=off docs docs/build/html -j auto ``` Create labels in *.md: ```md (pallas_block_specs_by_example)= ``` Reference a label in *.md ```md {ref}`pallas_block_specs_by_example` ``` Create labels in *.rst: ```rst .. _pallas_tpu_noteworthy_properties: ``` PiperOrigin-RevId: 681675621
copybara-service bot
pushed a commit
that referenced
this pull request
Oct 3, 2024
This PR uses the same method to add cross references as the previous PR #23889. --- The content below is for future references. Useful commands: ```sh # sync *.md to *.ipynb jupytext docs/pallas/quickstart.md -o docs/pallas/quickstart.ipynb # build documentation sphinx-build -b html -D nb_execution_mode=off docs docs/build/html -j auto ``` Create a label in *.md: ```md (pallas_block_specs_by_example)= ``` Create a label in *.rst: ```rst .. _pallas_tpu_noteworthy_properties: ``` Reference a label in *.md ```md {ref}`pallas_block_specs_by_example` ``` PiperOrigin-RevId: 681675621
copybara-service bot
pushed a commit
that referenced
this pull request
Oct 3, 2024
This PR uses the same method to add cross references as the previous PR #23889. --- The content below is for future references. #### Useful commands Build documentation: ```sh sphinx-build -b html -D nb_execution_mode=off docs docs/build/html -j auto ``` Create a label in *.md: ```md (pallas_block_specs_by_example)= ``` Create a label in *.rst: ```rst .. _pallas_tpu_noteworthy_properties: ``` Reference a label in *.md ```md {ref}`pallas_block_specs_by_example` ``` PiperOrigin-RevId: 681675621
copybara-service bot
pushed a commit
that referenced
this pull request
Oct 3, 2024
This PR uses the same method to add cross references as the previous PR #23889. --- The content below is for future references. #### Useful commands Build documentation: ```sh sphinx-build -b html -D nb_execution_mode=off docs docs/build/html -j auto ``` Create a label in *.md: ```md (pallas_block_specs_by_example)= ``` Create a label in *.rst: ```rst .. _pallas_tpu_noteworthy_properties: ``` Reference a label in *.md: ```md {ref}`pallas_block_specs_by_example` ``` Sync changes from *.md to *.ipynb: ```sh jupytext --sync docs/pallas/tpu/distributed.md ``` PiperOrigin-RevId: 681675621
copybara-service bot
pushed a commit
that referenced
this pull request
Oct 3, 2024
This PR uses the same method to add cross references as the previous PR #23889. --- The content below is for future references. #### Useful commands Build documentation: ```sh sphinx-build -b html -D nb_execution_mode=off docs docs/build/html -j auto ``` Create a label in *.md: ```md (pallas_block_specs_by_example)= ``` Create a label in *.rst: ```rst .. _pallas_tpu_noteworthy_properties: ``` Reference a label in *.md: ```md {ref}`pallas_block_specs_by_example` ``` Sync changes from *.md to *.ipynb: ```sh jupytext --sync docs/pallas/tpu/distributed.md ``` PiperOrigin-RevId: 681675621
copybara-service bot
pushed a commit
that referenced
this pull request
Oct 3, 2024
This PR uses the same method to add cross references as the previous PR #23889. --- The content below is for future references. #### Useful commands Build documentation: ```sh sphinx-build -b html -D nb_execution_mode=off docs docs/build/html -j auto ``` Create a label in *.md: ```md (pallas_block_specs_by_example)= ``` Create a label in *.rst: ```rst .. _pallas_tpu_noteworthy_properties: ``` Reference a label in *.md: ```md {ref}`pallas_block_specs_by_example` ``` Sync changes from *.md to *.ipynb: ```sh jupytext --sync docs/pallas/tpu/distributed.md ``` PiperOrigin-RevId: 682034607
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[Pallas TPU] Add a note in the Pallas Quickstart documentation about the instructions of running the existing example on TPU
This fixes #22817
This changes is originally proposed by @justinjfu in the comments of the above issue.
This PR is related to #23885.