mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 03:46:06 +00:00

This PR uses the same method to add cross references as the previous PR https://github.com/jax-ml/jax/pull/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