Skip to content
Snippets Groups Projects
Commit dac622f0 authored by James Stevens's avatar James Stevens
Browse files

enhanced map print function, updated tutorial accordingly

parent fddd4383
No related branches found
No related tags found
No related merge requests found
......@@ -1223,8 +1223,7 @@ Note that loopy will infer the data types for arrays c and e from the informatio
.. doctest::
>>> for key in op_map.dict.keys():
... print("%s : %s" % (key, op_map.dict[key]))
>>> print(op_map)
float64 : [n, m, l] -> { 2 * n * m : n >= 1 and m >= 1 and l >= 1 }
int32 : [n, m, l] -> { n * m : n >= 1 and m >= 1 and l >= 1 }
float32 : [n, m, l] -> { 3 * n * m * l : n >= 1 and m >= 1 and l >= 1 }
......@@ -1251,8 +1250,7 @@ Counting array accesses
>>> from loopy.statistics import get_DRAM_access_poly
>>> load_store_map = get_DRAM_access_poly(knl)
>>> for key in load_store_map.dict.keys():
... print("%s : %s" % (key, load_store_map.dict[key]))
>>> print(load_store_map)
(dtype('float32'), 'uniform', 'store') : [n, m, l] -> { n * m * l : n >= 1 and m >= 1 and l >= 1 }
(dtype('float64'), 'uniform', 'load') : [n, m, l] -> { 2 * n * m : n >= 1 and m >= 1 and l >= 1 }
(dtype('float64'), 'uniform', 'store') : [n, m, l] -> { n * m : n >= 1 and m >= 1 and l >= 1 }
......@@ -1284,7 +1282,7 @@ We can evaluate these polynomials using :func:`islpy.eval_with_dict`:
~~~~~~~~~~~
Since we have not tagged any of the inames or parallelized the kernel across threads (which would have produced iname tags), :func:`loopy.get_DRAM_access_poly` considers the array accesses *uniform*. Now we'll parallelize the kernel and count the array accesses again:
Since we have not tagged any of the inames or parallelized the kernel across threads (which would have produced iname tags), :func:`loopy.get_DRAM_access_poly` considers the array accesses *uniform*. Now we'll parallelize the kernel and count the array accesses again. The resulting :class:`islpy.PwQPolynomial` will be more complicated this time, so we'll print the mapping manually to make it more legible:
.. doctest::
......
......@@ -76,7 +76,10 @@ class ToCountMap:
return isl.PwQPolynomial('{ 0 }')
def __str__(self):
return str(self.dict)
result = ""
for key in self.dict.keys():
result += ("%s : %s\n" % (key, self.dict[key]))
return result
def __repr__(self):
return repr(self.dict)
......
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