From c606a0ba6f0f39d8352183798bc9482f7f82c074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20O=C5=BC=C3=B3g?= <58388001+SzymonOzog@users.noreply.github.com> Date: Wed, 24 Apr 2024 18:54:43 +0200 Subject: [PATCH] Docs link fix (#4286) * Update quickstart.md * Update README.md * Update quickstart.md * Update README.md --- docs-legacy/README.md | 6 +++--- docs/quickstart.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs-legacy/README.md b/docs-legacy/README.md index 5651277753..a61c1ccf99 100644 --- a/docs-legacy/README.md +++ b/docs-legacy/README.md @@ -6,7 +6,7 @@ Here you will find documentation for tinygrad, as well as some examples and tuto Read the quick start guide [here](/docs/quickstart.md). -Or if you want to jump right in to how tinygrad works, you can read the [abstraction stack](/docs/abstractions2.py) documentation. +Or if you want to jump right in to how tinygrad works, you can read the [abstraction stack](/docs-legacy/abstractions2.py) documentation. Or if you want to see some examples, you can look at the examples in the [examples](/examples) directory. @@ -20,11 +20,11 @@ This is currently a big work in progress. ### Environment Variables -[env_vars.md](/docs/env_vars.md) +[env_vars.md](/docs-legacy/env_vars.md) ### Adding New Accelerators -[adding_new_accelerators.md](/docs/adding_new_accelerators.md) +[adding_new_accelerators.md](/docs-legacy/adding_new_accelerators.md) ### Community diff --git a/docs/quickstart.md b/docs/quickstart.md index 4b98cd3c30..8523b2157f 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -76,7 +76,7 @@ print(t6.numpy()) ``` There are a lot more operations that can be performed on tensors, you can find them in the [tensor.py](/tinygrad/tensor.py) file. -Additionally reading through [abstractions2.py](/docs/abstractions2.py) will help you understand how operations on these tensors make their way down to your hardware. +Additionally reading through [abstractions2.py](/docs-legacy/abstractions2.py) will help you understand how operations on these tensors make their way down to your hardware. ## Models @@ -299,7 +299,7 @@ Many of the models in the [models/](/models) folder have a `load_from_pretrained There exist a bunch of environment variables that control the runtime behavior of tinygrad. Some of the commons ones are `DEBUG` and the different backend enablement variables. -You can find a full list and their descriptions in [env_vars.md](/docs/env_vars.md). +You can find a full list and their descriptions in [env_vars.md](/docs-legacy/env_vars.md). ### Visualizing the Computation Graph