[documentation] swapped the order of pytriton and triton-c tutorial in README.md

This commit is contained in:
Philippe Tillet
2019-09-10 21:17:22 -04:00
parent 41acac6ba1
commit d7be0edb15
2 changed files with 2 additions and 4 deletions

View File

@@ -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...)

View File

@@ -3,8 +3,6 @@
## <span style="color:darkred"> Table of Contents </span>
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.
And that's it! Our custom op is now created and ready to be used with both PyTorch and Tensorflow.