Files
triton/docs/index.rst

38 lines
1.4 KiB
ReStructuredText
Raw Normal View History

2020-02-10 00:33:03 -05:00
Welcome to Triton's documentation!
==================================
Triton is an imperative language and compiler for parallel programming. It aims to provide a programming environment for productively writing custom DNN compute kernels capable of running at maximal throughput on modern GPU hardware.
Getting Started
---------------
2020-02-10 00:33:03 -05:00
- Follow the :doc:`installation instructions <getting-started/installation>` for your platform of choice.
- Take a look at the :doc:`tutorials <getting-started/tutorials/index>` to learn how to write your first Triton program.
2020-02-10 00:33:03 -05:00
2021-03-05 22:33:50 -05:00
.. toctree::
:maxdepth: 1
:caption: Getting Started
:hidden:
getting-started/installation
getting-started/tutorials/index
2021-03-19 15:37:15 -04:00
Programming Guide
------------------
2021-03-19 15:37:15 -04:00
Check out the following documents to learn more about Triton and how it compares against other DSLs for DNNs:
- Chapter 1: :doc:`Introduction <programming-guide/chapter-1/introduction>`
- Chapter 2: :doc:`Related Work <programming-guide/chapter-2/related-work>`
- Chapter 3: :doc:`The Triton-C Language <programming-guide/chapter-3/triton-c>`
- Chapter 4: :doc:`The Triton-IR Intermediate Representation <programming-guide/chapter-4/triton-ir>`
.. toctree::
:maxdepth: 1
:caption: Programming Guide
:hidden:
programming-guide/chapter-1/introduction
programming-guide/chapter-2/related-work
programming-guide/chapter-3/triton-c
programming-guide/chapter-4/triton-ir