Skip to content

Commit 7a39f69

Browse files
authored
[docs] update triton-shared link in docs. (#73)
Signed-off-by: mabsar <mabsar@qti.qualcommm.com>
1 parent 33e52e3 commit 7a39f69

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/developer-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ The following Triton language features are currently **not supported**:
9191
- [OpenAI Triton](https://github.com/openai/triton) - Main Triton repository
9292
- [Triton Language Reference](https://triton-lang.org/main/python-api/triton.language.html) - Language documentation
9393
- [Triton Tutorials](https://triton-lang.org/main/getting-started/tutorials/index.html) - Learning resources
94-
- [Triton-Shared Middle Layer](https://github.com/microsoft/triton-shared) - Triton to Linalg toolchain
94+
- [Triton-Shared Middle Layer](https://github.com/facebookincubator/triton-shared.git) - Triton to Linalg toolchain

docs/tutorials/triton/flash_attention.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The Python Triton kernel undergoes a multi-stage compilation process.
2929
| Stage | Tool/Library | Description |
3030
|-------|-------------|-------------|
3131
| **1** | [triton-compiler](https://github.com/triton-lang/triton) | `Triton Kernel → Triton-IR` |
32-
| **2** | [triton-shared](https://github.com/microsoft/triton-shared) | `Triton IR → Linalg IR` |
32+
| **2** | [triton-shared](https://github.com/facebookincubator/triton-shared) | `Triton IR → Linalg IR` |
3333
| **3** | `linalg-hexagon-opt`/libcall | `Linalg IR → MLIR-LLVM` (ML lowering and opt) |
3434
| **4** | `linalg-hexagon-translate` | `MLIR-LLVM IR → Object Code` |
3535
| **5** | Linker | Create `libflash_attention_kernel.so` |

docs/tutorials/triton/gelu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The Python Triton kernel undergoes a multi-stage compilation process.
3030
| Stage | Tool/Library | Description |
3131
|-------|-------------|-------------|
3232
| **1** | [triton-compiler](https://github.com/triton-lang/triton) | `Triton Kernel → Triton-IR` |
33-
| **2** | [triton-shared](https://github.com/microsoft/triton-shared) | `Triton IR → Linalg IR` |
33+
| **2** | [triton-shared](https://github.com/facebookincubator/triton-shared) | `Triton IR → Linalg IR` |
3434
| **3** | `linalg-hexagon-opt`/libcall | `Linalg IR → MLIR-LLVM` (ML lowering and opt) |
3535
| **4** | `linalg-hexagon-translate` | `MLIR-LLVM IR → Object Code` |
3636
| **5** | Linker | Create `libadd_kernel.so` |

docs/tutorials/triton/matmul_hexkl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The Python Triton kernel undergoes a multi-stage compilation process.
3232
| Stage | Tool/Library | Description |
3333
|-------|-------------|-------------|
3434
| **1** | [triton-compiler](https://github.com/triton-lang/triton) | `Triton Kernel → Triton-IR` |
35-
| **2** | [triton-shared](https://github.com/microsoft/triton-shared) | `Triton IR → Linalg IR` |
35+
| **2** | [triton-shared](https://github.com/facebookincubator/triton-shared) | `Triton IR → Linalg IR` |
3636
| **3** | `linalg-hexagon-opt`/libcall | `Linalg IR → MLIR-LLVM` (ML lowering and opt) |
3737
| **4** | `linalg-hexagon-translate` | `MLIR-LLVM IR → Object Code` |
3838
| **5** | Linker | Create `libmatmul_hexkl.so` |

docs/tutorials/triton/softmax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The Python Triton kernel undergoes a multi-stage compilation process.
2626
| Stage | Tool/Library | Description |
2727
|-------|-------------|-------------|
2828
| **1** | [triton-compiler](https://github.com/triton-lang/triton) | `Triton Kernel → Triton-IR` |
29-
| **2** | [triton-shared](https://github.com/microsoft/triton-shared) | `Triton IR → Linalg IR` |
29+
| **2** | [triton-shared](https://github.com/facebookincubator/triton-shared) | `Triton IR → Linalg IR` |
3030
| **3** | `linalg-hexagon-opt`/libcall | `Linalg IR → MLIR-LLVM` (ML lowering and opt) |
3131
| **4** | `linalg-hexagon-translate` | `MLIR-LLVM IR → Object Code` |
3232
| **5** | Linker | Create `libsoftmax_kernel.so` |

docs/tutorials/triton/vector_add.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The Python Triton kernel undergoes multi-stage compilation process.
3131
| Stage | Tool/Library | Description |
3232
|-------|-------------|-------------|
3333
| **1** | [triton-compiler](https://github.com/triton-lang/triton) | `Triton Kernel → Triton-IR` |
34-
| **2** | [triton-shared](https://github.com/microsoft/triton-shared) | `Triton IR → Linalg IR` |
34+
| **2** | [triton-shared](https://github.com/facebookincubator/triton-shared) | `Triton IR → Linalg IR` |
3535
| **3** | `linalg-hexagon-opt`/libcall | `Linalg IR → MLIR-LLVM` (ML lowering and opt) |
3636
| **4** | `linalg-hexagon-translate` | `MLIR-LLVM IR → Object Code` |
3737
| **5** | Linker | Create `libadd_kernel.so` |

docs/user-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,4 +314,4 @@ pytest -sv test/python/torch-mlir/test_softmax_torch.py
314314
- [OpenAI Triton](https://github.com/openai/triton) - Main Triton repository
315315
- [Triton Language Reference](https://triton-lang.org/main/python-api/triton.language.html) - Language documentation
316316
- [Triton Tutorials](https://triton-lang.org/main/getting-started/tutorials/index.html) - Learning resources
317-
- [Triton-Shared Middle Layer](https://github.com/microsoft/triton-shared) - Triton to Linalg toolchain
317+
- [Triton-Shared Middle Layer](https://github.com/facebookincubator/triton-shared) - Triton to Linalg toolchain

0 commit comments

Comments
 (0)