Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rbaghdadi committed Jul 17, 2018
2 parents 4fd5959 + d1a6842 commit b5426ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tutorials/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Tutorials

These tutorials are about the low level Tiramisu API. Other tutorials that present the high level API are being prepared and will be published soon. The low level API is verbose but allows full control over code generation and is supposed to be used mainly only by the compiler developers (but this is the only API that we provide for the moment).
These tutorials are about the low level Tiramisu API. Other tutorials that present the high level API are being prepared and will be published soon. The low level API is verbose but allows full control over code generation and is supposed to be used mainly by the compiler developers, not the final users (but this is the only API that we provide for the moment).

- [Developers tutorial 01](developers/tutorial_01/tutorial_01.cpp): a simple example of how to use the low level Tiramisu API (a simple assignment).
- [Developers tutorial 01](developers/tutorial_01/tutorial_01.cpp): a simple assignment example (1D loop).
- [Developers tutorial 02](developers/tutorial_02/tutorial_02.cpp): another simple example (2D loop).
- [Developers tutorial 03](developers/tutorial_03/tutorial_03.cpp): a simple sequence of computations.
- [Developers tutorial 04A](developers/tutorial_04A/tutorial_04A.cpp): a matrix multiplication example.
Expand Down
2 changes: 1 addition & 1 deletion tutorials/developers/tutorial_02/tutorial_02.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int main(int argc, char **argv)
// Layer III
// -------------------------------------------------------

// Declare input and output buffers/
// Declare input and output buffers.
buffer b_input("b_input", {expr(NN), expr(MM)}, p_uint8, a_input, &tut_02);
buffer b_output("b_output", {expr(NN), expr(MM)}, p_uint8, a_output, &tut_02);

Expand Down

0 comments on commit b5426ca

Please sign in to comment.