[DOC] Added more tutorials

This commit is contained in:
Philippe Tillet
2020-02-10 03:17:18 -05:00
committed by Philippe Tillet
parent 12a621bb2f
commit 5778eea546
5 changed files with 303 additions and 244 deletions

View File

@@ -1,3 +1,21 @@
***************
From Source
***************
***************
Triton is a fairly self-contained package and uses its own parser (forked from `wgtcc <https://github.com/wgtdkp/wgtcc>`_) and LLVM-8.0+ for code generation.
.. code-block:: bash
sudo apt-get install llvm-8-dev
git clone https://github.com/ptillet/triton.git;
cd triton/python/;
python setup.py develop;
This should take about 15-20 seconds to compile on a modern machine.
You can then test your installation by running the *einsum.py* example in an environment that contains pytorch:
.. code-block:: bash
cd examples;
python einsum.py