From d7be0edb15f85a9b4784a9368f288358a5a79cbb Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Tue, 10 Sep 2019 21:17:22 -0400 Subject: [PATCH] [documentation] swapped the order of pytriton and triton-c tutorial in README.md --- README.md | 2 +- docs/pytriton.md | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 41030146a..8a5fe3e98 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ python dot.py ## Tutorials -- [The Triton-C language](https://github.com/ptillet/triton/blob/master/docs/triton-c.md) - [The PyTriton API](https://github.com/ptillet/triton/blob/master/docs/pytriton.md) +- [The Triton-C language](https://github.com/ptillet/triton/blob/master/docs/triton-c.md) - The Triton-IR representation (coming soon...) - The Triton-JIT compiler (coming soon...) diff --git a/docs/pytriton.md b/docs/pytriton.md index a877dadbd..d2b2f7983 100644 --- a/docs/pytriton.md +++ b/docs/pytriton.md @@ -3,8 +3,6 @@ ## Table of Contents -This tutorial is the continuation of the [Triton-C tutorial](https://github.com/ptillet/triton/blob/master/docs/triton-c.md), so check it out if you have not already! - 1. [Motivations](#motivations) 2. [Triton Functions](#pytriton-function) 1. [Creation of Triton Kernels](#creation-triton-kernels) @@ -232,4 +230,4 @@ Still like for PyTorch, a callable operation can be created using the `apply` me ```python dot = _dot.apply ``` -And that's it! Our custom op is now created and ready to be used with both PyTorch and Tensorflow. \ No newline at end of file +And that's it! Our custom op is now created and ready to be used with both PyTorch and Tensorflow.