From 6c3d7174b1576fd32b8fe47c946e417ab8ea05bd Mon Sep 17 00:00:00 2001 From: Thomas Viehmann Date: Wed, 20 Mar 2024 11:22:27 -0700 Subject: [PATCH] Link to Zero to Thunder studio (#2492) --- README.md | 4 ++++ docs/source/conf.py | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a19713d1c..d5d2bc29b4 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,10 @@ Thunder supports distributed strategies like DDP and FSDP (ZeRO2 and ZeRO3). Her **NOTE: Lightning Thunder is alpha.** Feel free to get involved, expect a few bumps along the way. +## Start with Thunder + +Try Thunder without installing by using our [Zero to Thunder Tutorial Studio](https://lightning.ai/lightning-ai/studios/zero-to-thunder-tutorial). + ## Install Thunder Install [nvFuser](https://github.com/NVIDIA/Fuser) nightly, which will also install the matching PyTorch nightly: diff --git a/docs/source/conf.py b/docs/source/conf.py index dcf2414b54..052fa2437c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -49,7 +49,10 @@ github_user = "Lightning-AI" github_repo = project -linkcheck_ignore = [rf"https://github.com/Lightning-AI/lightning-thunder(/.*|\.git)"] +linkcheck_ignore = [ + rf"https://github.com/Lightning-AI/lightning-thunder(/.*|\.git)", + rf"https://github.com/Lightning-AI/.*/blob/.*#.*", # github anchors are tricky +] # -- Project documents -------------------------------------------------------