diff --git a/loopy/kernel.py b/loopy/kernel.py index ae40d8dbe4b3c565bfbc0e4c001a4651267dc446..eb7a340e49432e122c98c8504805ec38143411f2 100644 --- a/loopy/kernel.py +++ b/loopy/kernel.py @@ -508,7 +508,7 @@ class LoopKernel(Record): returning a tuple (result_dtype, function_name), where the function_name is the C-level function to be called. :ivar defines: a dictionary of replacements to be made in instructions given - as strings before parsing. A macro instance intended to be replaced should + as strings before parsing. A macro instance intended to be replaced should look like "{MACRO}" in the instruction code. The expansion given in this parameter is allowed to be a list. In this case, instructions are generated for *each* combination of macro values. @@ -533,7 +533,7 @@ class LoopKernel(Record): def __init__(self, device, domain, instructions, args=None, schedule=None, name="loopy_kernel", - preambles=[], + preambles=[], preamble_generators=[default_preamble_generator], assumptions=None, local_sizes={}, @@ -547,7 +547,7 @@ class LoopKernel(Record): iname_slab_increments={}, applied_iname_rewrites=[], cache_manager=None, - iname_to_tag_requests=None, + iname_to_tag_requests=None, lowest_priority_inames=[], breakable_inames=set()): """ :arg domain: a :class:`islpy.BasicSet`, or a string parseable to a basic set by the isl. diff --git a/loopy/symbolic.py b/loopy/symbolic.py index d91b94c001863ff0ffa21b58979ef52257e6cb41..c7376b4d652156bdf953bae3eaba84dcb63f5065 100644 --- a/loopy/symbolic.py +++ b/loopy/symbolic.py @@ -53,7 +53,7 @@ class TypedCSE(CommonSubexpression): class TaggedVariable(VariableBase): """This is an identifier with a tag, such as 'matrix$one', where 'one' identifies this specific use of the identifier. This mechanism - may then be used to address these uses--such as by prefetching only + may then be used to address these uses--such as by prefetching only accesses tagged a certain way. """ def __init__(self, name, tag):