From 849a7c80ce2a4de45f335bc7d63dfb1a3e013efb Mon Sep 17 00:00:00 2001 From: Riyadh Baghdadi Date: Mon, 16 Jul 2018 21:06:32 -0400 Subject: [PATCH 1/3] Update tutorial_02.cpp --- tutorials/developers/tutorial_02/tutorial_02.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/developers/tutorial_02/tutorial_02.cpp b/tutorials/developers/tutorial_02/tutorial_02.cpp index 57c702929..19974af7b 100644 --- a/tutorials/developers/tutorial_02/tutorial_02.cpp +++ b/tutorials/developers/tutorial_02/tutorial_02.cpp @@ -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); From 67d00395004c5ba002c6b6631c87543f749cf138 Mon Sep 17 00:00:00 2001 From: Riyadh Baghdadi Date: Mon, 16 Jul 2018 21:07:36 -0400 Subject: [PATCH 2/3] Update README.md --- tutorials/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/README.md b/tutorials/README.md index c390b3e73..afa4c0e10 100644 --- a/tutorials/README.md +++ b/tutorials/README.md @@ -1,6 +1,6 @@ # 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 02](developers/tutorial_02/tutorial_02.cpp): another simple example (2D loop). From d1a684228e5496df2c03f338df9694b0d7d6d051 Mon Sep 17 00:00:00 2001 From: Riyadh Baghdadi Date: Mon, 16 Jul 2018 21:08:23 -0400 Subject: [PATCH 3/3] Update README.md --- tutorials/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/README.md b/tutorials/README.md index afa4c0e10..007ce25ee 100644 --- a/tutorials/README.md +++ b/tutorials/README.md @@ -2,7 +2,7 @@ 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.