From 9bf4a8928c069ae0a38825c46b715c145d183944 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Wed, 27 Dec 2017 18:34:28 -0600 Subject: [PATCH] Fix doctests for auto/runtime unification --- doc/tutorial.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 69f895486..7196dad86 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -111,9 +111,9 @@ always see loopy's view of a kernel by printing it. KERNEL: loopy_kernel --------------------------------------------------------------------------- ARGUMENTS: - a: GlobalArg, type: , shape: (n), dim_tags: (N0:stride:1) - n: ValueArg, type: - out: GlobalArg, type: , shape: (n), dim_tags: (N0:stride:1) + a: GlobalArg, type: , shape: (n), dim_tags: (N0:stride:1) + n: ValueArg, type: + out: GlobalArg, type: , shape: (n), dim_tags: (N0:stride:1) --------------------------------------------------------------------------- DOMAINS: [n] -> { [i] : 0 <= i < n } @@ -154,7 +154,7 @@ following: See :ref:`specifying-arguments`. * Loopy has not determined the type of ``a`` and ``out``. The data type is - given as ````, which means that these types will be determined + given as ````, which means that these types will be determined by the data passed in when the kernel is invoked. Loopy generates (and caches!) a copy of the kernel for each combination of types passed in. -- GitLab