Skip to content
Snippets Groups Projects
Commit 012ce558 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Re-fix doctest with variable output

parent afa3280a
No related branches found
No related tags found
No related merge requests found
......@@ -1372,16 +1372,16 @@ our parallelization of the kernel:
>>> for key in sorted(load_store_map.dict.keys(), key=lambda k: str(k)):
... print("%s :\n%s\n" % (key, load_store_map.dict[key]))
(dtype('float32'), 'nonconsecutive', 'load') :
[n, m, l] -> { (((192 * n + -3 * n * m) * l * floor((m)/128) + 192 * n * l * floor((m)/128)^2) + (192 * n + 3 * n * m) * l * floor((127 + m)/128) + -192 * n * l * floor((127 + m)/128)^2) : n >= 1 and m >= 1 and l >= 1 }
[n, m, l] -> { ... }
<BLANKLINE>
(dtype('float32'), 'nonconsecutive', 'store') :
[n, m, l] -> { (((64 * n + -n * m) * l * floor((m)/128) + 64 * n * l * floor((m)/128)^2) + (64 * n + n * m) * l * floor((127 + m)/128) + -64 * n * l * floor((127 + m)/128)^2) : n >= 1 and m >= 1 and l >= 1 }
[n, m, l] -> { ... }
<BLANKLINE>
(dtype('float64'), 'nonconsecutive', 'load') :
[n, m, l] -> { 2 * n * m : n >= 1 and m >= 1 and l >= 1 }
[n, m, l] -> { ... }
<BLANKLINE>
(dtype('float64'), 'nonconsecutive', 'store') :
[n, m, l] -> { n * m : n >= 1 and m >= 1 and l >= 1 }
[n, m, l] -> { ... }
<BLANKLINE>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment