Reference: Transforming Kernels#

Dealing with Parameters#

loopy.fix_parameters(kernel, **value_dict)[source]#

Fix the values of the arguments to specific constants.

value_dict consists of name/value pairs, where name will be fixed to be value. name may refer to Domain parameters or Arguments.

loopy.assume(kernel, assumptions)[source]#

Include an assumption about Domain parameters in the kernel, e.g. n mod 4 = 0.

Parameters:

assumptions โ€“ a islpy.BasicSet or a string representation of the assumptions in ISL syntax.

Wrangling inames#

loopy.split_iname(kernel, split_iname, inner_length, *, outer_iname=None, inner_iname=None, outer_tag=None, inner_tag=None, slabs=(0, 0), do_tagged_check=True, within=None)[source]#

Split split_iname into two inames (an โ€˜innerโ€™ one and an โ€˜outerโ€™ one) so that split_iname == inner + outer*inner_length and inner is of constant length inner_length.

Parameters:
  • outer_iname โ€“ The new iname to use for the โ€˜innerโ€™ (fixed-length) loop. Defaults to a name derived from split_iname + "_outer"

  • inner_iname โ€“ The new iname to use for the โ€˜innerโ€™ (fixed-length) loop. Defaults to a name derived from split_iname + "_inner"

  • inner_length โ€“ a positive integer

  • slabs โ€“ A tuple (head_it_count, tail_it_count) indicating the number of leading/trailing iterations of outer_iname for which separate code should be generated.

  • outer_tag โ€“ The iname tag (see Iname Implementation Tags) to apply to outer_iname.

  • inner_tag โ€“ The iname tag (see Iname Implementation Tags) to apply to inner_iname.

  • within โ€“ a stack match as understood by loopy.match.parse_match().

Split inames do not inherit tags from their โ€˜parentโ€™ inames.

loopy.chunk_iname(kernel, split_iname, num_chunks, outer_iname=None, inner_iname=None, outer_tag=None, inner_tag=None, slabs=(0, 0), do_tagged_check=True, within=None)[source]#

Split split_iname into two inames (an โ€˜innerโ€™ one and an โ€˜outerโ€™ one) so that split_iname == inner + outer*chunk_length and outer is of fixed length num_chunks.

Parameters:

within โ€“ a stack match as understood by loopy.match.parse_stack_match().

Split inames do not inherit tags from their โ€˜parentโ€™ inames.

New in version 2016.2.

loopy.join_inames(kernel, inames, new_iname=None, tag=None, within=None)[source]#

In a sense, the inverse of split_iname(). Takes in inames, finds their bounds (all but the first have to be bounded), and combines them into a single loop via analogs of new_iname = i0 * LEN(i1) + i1. The old inames are re-obtained via the appropriate division/modulo operations.

Parameters:
loopy.untag_inames(kernel, iname_to_untag, tag_type)[source]#

Remove tags on iname_to_untag which matches tag_type.

Parameters:

New in version 2018.1.

loopy.tag_inames(kernel, iname_to_tag, force=False, ignore_nonexistent=False)[source]#

Tag an iname

Parameters:

iname_to_tag โ€“ a list of tuples (iname, new_tag). new_tag is given as an instance of a subclass of pytools.tag.Tag, for example a subclass of loopy.kernel.data.InameImplementationTag. May also be iterable of which, or as a string as shown in Iname Implementation Tags. May also be a dictionary for backwards compatibility. iname may also be a wildcard using * and ?.

Changed in version 2016.3: Added wildcards.

Changed in version 2018.1: Added iterable of tags

loopy.duplicate_inames(kernel, inames, within, new_inames=None, suffix=None, tags=None)[source]#
Parameters:

within โ€“ a stack match as understood by loopy.match.parse_stack_match().

loopy.get_iname_duplication_options(kernel)[source]#

List options for duplication of inames, if necessary for schedulability

Returns:

a generator listing all options to duplicate inames, if duplication of an iname is necessary to ensure the schedulability of the kernel. Duplication options are returned as tuples (iname, within) as understood by duplicate_inames(). There is no guarantee, that the transformed kernel will be schedulable, because multiple duplications of iname may be necessary.

Some kernels require the duplication of inames in order to be schedulable, as the forced iname dependencies define an over-determined problem to the scheduler. Consider the following minimal example:

knl = lp.make_kernel(["{[i,j]:0<=i,j<n}"],
                     """
                     mat1[i,j] = mat1[i,j] + 1 {inames=i:j, id=i1}
                     mat2[j] = mat2[j] + 1 {inames=j, id=i2}
                     mat3[i] = mat3[i] + 1 {inames=i, id=i3}
                     """)

In the example, there are four possibilities to resolve the problem: * duplicating i in instruction i3 * duplicating i in instruction i1 and i3 * duplicating j in instruction i2 * duplicating i in instruction i2 and i3

Use has_schedulable_iname_nesting() to decide whether an iname needs to be duplicated in a given kernel.

loopy.has_schedulable_iname_nesting(kernel)[source]#
Returns:

a bool indicating whether this kernel needs an iname duplication in order to be schedulable.

loopy.prioritize_loops(kernel, loop_priority)[source]#

Indicates the textual order in which loops should be entered in the kernel code. Note that this priority has an advisory role only. If the kernel logically requires a different nesting, priority is ignored. Priority is only considered if loop nesting is ambiguous.

prioritize_loops can be used multiple times. If you do so, each given loop_priority specifies a scheduling constraint. The constraints from all calls to prioritize_loops together establish a partial order on the inames (see https://en.wikipedia.org/wiki/Partially_ordered_set).

Arg:

an iterable of inames, or, for brevity, a comma-separated string of inames

loopy.rename_iname(kernel, old_iname, new_iname, existing_ok=False, within=None, preserve_tags=True, raise_on_domain_mismatch: bool | None = None)[source]#

Single iname version of loopy.rename_inames(). :arg existing_ok: execute even if new_iname already exists. :arg within: a stack match understood by loopy.match.parse_stack_match(). :arg preserve_tags: copy the tags on the old iname to the new iname. :arg raise_on_domain_mismatch: If True, raises an error if \(\exists (i_1,i_2) \in \{\text{old\_inames}\}^2 | \mathcal{D}_{i_1} \neq \mathcal{D}_{i_2}\).

loopy.rename_inames(kernel, old_inames, new_iname, existing_ok=False, within=None, raise_on_domain_mismatch: bool | None = None)[source]#
Parameters:
  • old_inames โ€“ A collection of inames that must be renamed to new_iname.

  • within โ€“ a stack match as understood by loopy.match.parse_stack_match().

  • existing_ok โ€“ execute even if new_iname already exists

  • raise_on_domain_mismatch โ€“ If True, raises an error if \(\exists (i_1,i_2) \in \{\text{old\_inames}\}^2 | \mathcal{D}_{i_1} \neq \mathcal{D}_{i_2}\).

loopy.remove_unused_inames(kernel, inames=None)[source]#

Delete those among inames that are unused, i.e. project them out of the domain. If these inames pose implicit restrictions on other inames, these restrictions will persist as existentially quantified variables.

Parameters:

inames โ€“ may be an iterable of inames or a string of comma-separated inames.

loopy.split_reduction_inward(kernel, inames, within=None)[source]#

Takes a reduction of the form:

sum([i,j,k], ...)

and splits it into two nested reductions:

sum([j,k], sum([i], ...))

In this case, inames would have been "i" indicating that the iname i should be made the iname governing the inner reduction.

Parameters:

inames โ€“ A list of inames, or a comma-separated string that can be parsed into those

loopy.split_reduction_outward(kernel, inames, within=None)[source]#

Takes a reduction of the form:

sum([i,j,k], ...)

and splits it into two nested reductions:

sum([i], sum([j,k], ...))

In this case, inames would have been "i" indicating that the iname i should be made the iname governing the outer reduction.

Parameters:

inames โ€“ A list of inames, or a comma-separated string that can be parsed into those

loopy.affine_map_inames(kernel, old_inames, new_inames, equations)[source]#

Return a new kernel where the affine transform specified by equations has been applied to the inames.

Parameters:
  • old_inames โ€“ A list of inames to be replaced by affine transforms of their values. May also be a string of comma-separated inames.

  • new_inames โ€“ A list of new inames that are not yet used in kernel, but have their values established in terms of old_inames by equations. May also be a string of comma-separated inames.

  • equations โ€“ A list of equations estabilishing a relationship between old_inames and new_inames. Each equation may be a tuple (lhs, rhs) of expressions or a string, with left and right hand side of the equation separated by =.

loopy.find_unused_axis_tag(kernel, kind, insn_match=None)[source]#

For one of the hardware-parallel execution tags, find an unused axis.

Parameters:
  • insn_match โ€“ An instruction match as understood by loopy.match.parse_match().

  • kind โ€“ may be โ€œlโ€ or โ€œgโ€, or the corresponding tag class name

Returns:

an loopy.kernel.data.GroupInameTag or loopy.kernel.data.LocalInameTag that is not being used within the instructions matched by insn_match.

loopy.make_reduction_inames_unique(kernel, inames=None, within=None)[source]#
Parameters:

New in version 2016.2.

loopy.add_inames_to_insn(kernel, inames, insn_match)[source]#
Parameters:
  • inames โ€“ a frozenset of inames that will be added to the instructions matched by insn_match, or a comma-separated string that parses to such a tuple.

  • insn_match โ€“ An instruction match as understood by loopy.match.parse_match().

Returns:

a LoopKernel with the inames added to the instructions matched by insn_match.

New in version 2016.3.

loopy.map_domain(kernel, transform_map)[source]#

Transform an iname domain by applying a mapping from existing inames to new inames.

Parameters:

transform_map โ€“ A bijective islpy.Map from existing inames to new inames. To be applicable to a kernel domain, all input inames in the map must be found in the domain. The map must be applicable to exactly one domain found in kernel.domains.

loopy.add_inames_for_unused_hw_axes(kernel, within=None)[source]#

Returns a kernel with inames added to each instruction corresponding to any hardware-parallel iname tags (loopy.kernel.data.GroupInameTag, loopy.kernel.data.LocalInameTag) unused in the instruction but used elsewhere in the kernel.

Current limitations:

  • Only one iname in the kernel may be tagged with each of the unused hw axes.

  • Occurence of an l.auto tag when an instruction is missing one of the local hw axes.

Parameters:

within โ€“ An instruction match as understood by loopy.match.parse_match().

Dealing with Substitution Rules#

loopy.extract_subst(kernel, subst_name, template, parameters=(), within=None)[source]#
Parameters:
  • subst_name โ€“ The name of the substitution rule to be created.

  • template โ€“ Unification template expression.

  • parameters โ€“ An iterable of parameters used in template, or a comma-separated string of the same.

  • within โ€“ An instance of loopy.match.MatchExpressionBase or str as understood by loopy.match.parse_match().

All targeted subexpressions must match (โ€˜unify withโ€™) template The template may contain โ€˜*โ€™ wildcards that will have to match exactly across all unifications.

loopy.assignment_to_subst(kernel, lhs_name, extra_arguments=(), within=None, force_retain_argument=False)[source]#

Extract an assignment (to a temporary variable or an argument) as a Substitution Rules. The temporary may be an array, in which case the array indices will become arguments to the substitution rule.

Parameters:
  • within โ€“ a stack match as understood by loopy.match.parse_stack_match().

  • force_retain_argument โ€“ If True and if lhs_name is an argument, it is kept even if it is no longer referenced.

This operation will change all usage sites of lhs_name matched by within. If there are further usage sites of lhs_name, then the original assignment to lhs_name as well as the temporary variable is left in place.

loopy.expand_subst(kernel, within=None)[source]#

Returns an instance of loopy.LoopKernel with the substitutions referenced in instructions of kernel matched by within expanded.

Parameters:

within โ€“ a stack match as understood by loopy.match.parse_stack_match().

loopy.find_rules_matching(kernel, pattern)[source]#
Pattern:

A shell-style glob pattern.

loopy.find_one_rule_matching(program, pattern)[source]#

Caching, Precomputation and Prefetching#

loopy.precompute(program, *args, **kwargs)[source]#
loopy.add_prefetch(program, *args, **kwargs)[source]#

Prefetch all accesses to the variable var_name, with all accesses being swept through sweep_inames.

Parameters:
  • var_name โ€“

    A string, the name of the variable being prefetched. This may be a โ€˜tagged variable nameโ€™ (such as field$mytag to restrict the effect of the operation to only variable accesses with a matching tag.

    This may also be a subscripted version of the variable, in which case this access dictates the footprint that is prefetched, e.g. A[:,:] or field[i,j,:,:]. In this case, accesses in the kernel are disregarded.

  • sweep_inames โ€“ A list of inames, or a comma-separated string of them. This routine โ€˜sweepsโ€™ all accesses to var_name through all allowed values of the sweep_inames to generate a footprint. All values in this footprint are then stored in a temporary variable, and the original variable accesses replaced with accesses to this temporary.

  • dim_arg_names โ€“ List of names representing each fetch axis. These names show up as inames in the generated fetch code

  • default_tag โ€“ The implementation tag to assign to the inames driving the prefetch code. Use None to leave them undefined (to assign them later by hand). The current default will make them local axes and automatically split them to fit the work group size, but this default will disappear in favor of simply leaving them untagged in 2019.x. For 2018.x, a warning will be issued if no default_tag is specified.

  • rule_name โ€“ base name of the generated temporary variable.

  • temporary_name โ€“ The name of the temporary to be used.

  • temporary_address_space โ€“ The AddressSpace to use for the temporary.

  • footprint_subscripts โ€“

    A list of tuples indicating the index (i.e. subscript) tuples used to generate the footprint.

    If only one such set of indices is desired, this may also be specified directly by putting an index expression into var_name. Substitutions such as those occurring in dimension splits are recorded and also applied to these indices.

  • fetch_bounding_box โ€“

    To fit within loopyโ€™s execution model, the โ€˜footprintโ€™ of the fetch currently has to be a convex set. Sometimes this is not the case, e.g. for a high-order stencil:

      o
      o
    ooooo
      o
      o
    

    The footprint of the stencil when โ€˜sweptโ€™ over a base domain would look like this, and because of the โ€˜missing cornersโ€™, this set is not convex:

      oooooooooo
      oooooooooo
    oooooooooooooo
    oooooooooooooo
    oooooooooooooo
    oooooooooooooo
      oooooooooo
      oooooooooo
    

    Passing fetch_bounding_box=True gives loopy permission to instead fetch the โ€˜bounding boxโ€™ of the footprint, i.e. this set in the stencil example:

    OOooooooooooOO
    OOooooooooooOO
    oooooooooooooo
    oooooooooooooo
    oooooooooooooo
    oooooooooooooo
    OOooooooooooOO
    OOooooooooooOO
    

    Note the added corners marked with โ€œOโ€. The resulting footprint is guaranteed to be convex.

  • fetch_outer_inames โ€“ The inames within which the fetch instruction is nested. If None, make an educated guess.

  • fetch_insn_id โ€“ The ID of the instruction generated to perform the prefetch.

  • within โ€“ a stack match as understood by loopy.match.parse_stack_match() to select the instructions where var_name is to be prefetched.

This function internally uses extract_subst() and precompute().

loopy.buffer_array(program, *args, **kwargs)[source]#
loopy.alias_temporaries(kernel, names, base_name_prefix=None, synchronize_for_exclusive_use=True)[source]#

Sets all temporaries given by names to be backed by a single piece of storage.

Parameters:
  • synchronize_for_exclusive_use โ€“ A bool. If True, this also introduces ordering structures (โ€œgroupsโ€) to prevent the usage to ensure that the live ranges (i.e. the regions of code where each of the temporaries is used) do not overlap. This will allow two (or more) temporaries to share the same storage space as long as their live ranges do not need to be concurrent.

  • base_name_prefix โ€“ an identifier to be used for the common storage area

Changed in version 2016.3: Added synchronize_for_exclusive_use flag. synchronize_for_exclusive_use=True was the previous default behavior.

Influencing data access#

loopy.change_arg_to_image(kernel, name)[source]#
loopy.tag_array_axes(kernel, ary_names, dim_tags)[source]#
Parameters:

dim_tags โ€“

a tuple of loopy.kernel.array.ArrayDimImplementationTag or a string that parses to one. See loopy.kernel.array.parse_array_dim_tags() for a description of the allowed string format.

For example, dim_tags could be "N2,N0,N1" to determine that the second axis is the fastest-varying, the last is the next-fastest, and the first is the slowest.

Changed in version 2016.2: This function was called tag_data_axes before version 2016.2.

loopy.remove_unused_arguments(kernel)[source]#
loopy.set_array_axis_names(kernel, ary_names, dim_names)[source]#

Changed in version 2016.2: This function was called set_array_dim_names before version 2016.2.

loopy.privatize_temporaries_with_inames(kernel, privatizing_inames, only_var_names=None)[source]#

This function provides each loop iteration of the privatizing_inames with its own private entry in the temporaries it accesses (possibly restricted to only_var_names).

This is accomplished implicitly as part of generating instruction-level parallelism by the โ€œILPโ€ tag and accessible separately through this transformation.

Example:

for imatrix, i
    acc = 0
    for k
        acc = acc + a[imatrix, i, k] * vec[k]
    end
end

might become:

for imatrix, i
    acc[imatrix] = 0
    for k
        acc[imatrix] = acc[imatrix] + a[imatrix, i, k] * vec[k]
    end
end

facilitating loop interchange of the imatrix loop. .. versionadded:: 2018.1

loopy.unprivatize_temporaries_with_inames(kernel, privatizing_inames, only_var_names=None)[source]#

This function reverses the effects of privatize_temporaries_with_inames() and removes the private entries in the temporaries each loop iteration of the privatizing_inames accesses (possibly restricted to only_var_names).

Example:

for imatrix, i
    acc[imatrix] = 0
    for k
        acc[imatrix] = acc[imatrix] + a[imatrix, i, k] * vec[k]
    end
end

might become:

for imatrix, i
    acc = 0
    for k
        acc = acc + a[imatrix, i, k] * vec[k]
    end
end

New in version 2022.1.

loopy.allocate_temporaries_for_base_storage(kernel: LoopKernel, only_address_space: int | None = None, aliased=True, max_nbytes: int | None = None, _implicitly_run=False) LoopKernel[source]#

Padding Data#

loopy.split_array_axis(kernel, array_names, axis_nr, count, order='C')[source]#
Parameters:
  • array โ€“ a list of names of temporary variables or arguments. May also be a comma-separated string of these.

  • axis_nr โ€“ the (zero-based) index of the axis that should be split.

  • count โ€“ The group size to use in the split.

  • order โ€“ The way the split array axis should be linearized. May be โ€œCโ€ or โ€œFโ€ to indicate C/Fortran (row/column)-major order.

Changed in version 2016.2: There was a more complicated, dumber function called loopy.split_array_dim that had the role of this function in versions prior to 2016.2.

loopy.find_padding_multiple(kernel, variable, axis, align_bytes, allowed_waste=0.1)[source]#
loopy.add_padding(kernel, variable, axis, align_bytes)[source]#

Manipulating Instructions#

loopy.set_instruction_priority(kernel, insn_match, priority)[source]#

Set the priority of instructions matching insn_match to priority.

insn_match may be any instruction id match understood by loopy.match.parse_match().

loopy.add_dependency(kernel, insn_match, depends_on)[source]#

Add the instruction dependency dependency to the instructions matched by insn_match.

insn_match and depends_on may be any instruction id match understood by loopy.match.parse_match().

Changed in version 2016.3: Third argument renamed to depends_on for clarity, allowed to be not just ID but also match expression.

loopy.remove_instructions(kernel, insn_ids)[source]#

Return a new kernel with instructions in insn_ids removed.

Dependencies across deleted instructions are transitively propagated i.e. if insn_a depends on insn_b that depends on insn_c and โ€˜insn_bโ€™ is to be removed then the returned kernel will have a dependency from โ€˜insn_aโ€™ to โ€˜insn_cโ€™.

This also updates no_sync_with for all instructions.

Parameters:

insn_ids โ€“ An instance of set or str as understood by loopy.match.parse_match() or loopy.match.MatchExpressionBase.

loopy.replace_instruction_ids(kernel: LoopKernel, replacements: Mapping[str, Sequence[str]]) LoopKernel[source]#

Return a new kernel with the ids of instructions and dependencies replaced according to the provided mapping.

Parameters:

replacements โ€“ a dict mapping old insn ids to an iterable of new insn ids. The first entry of the iterable is used for replacement purposes. Additional insn ids after the first are added to the dependency list of instructions that have a dependency on the old insn id.

loopy.tag_instructions(kernel, new_tag, within=None)[source]#
loopy.add_nosync(kernel, scope, source, sink, bidirectional=False, force=False, empty_ok=False)[source]#

Add a no_sync_with directive between source and sink. no_sync_with is only added if sink depends on source or if the instruction pair is in a conflicting group.

This function does not check for the presence of a memory dependency.

Parameters:
  • kernel โ€“ The kernel

  • source โ€“ Either a single instruction id, or any instruction id match understood by loopy.match.parse_match().

  • sink โ€“ Either a single instruction id, or any instruction id match understood by loopy.match.parse_match().

  • scope โ€“ A valid no_sync_with scope. See loopy.InstructionBase.no_sync_with for allowable scopes.

  • bidirectional โ€“ A bool. If True, add a no_sync_with to both the source and sink instructions, otherwise the directive is only added to the sink instructions.

  • force โ€“ A bool. If True, add a no_sync_with directive even without the presence of a dependency edge or conflicting instruction group.

  • empty_ok โ€“ If True, do not complain even if no nosync tags were added as a result of the transformation.

Returns:

The updated kernel

Changed in version 2018.1: If the transformation adds no nosync directives, it will complain. This used to silently pass. This behavior can be restored using empty_ok.

loopy.add_barrier(kernel, insn_before='', insn_after='', id_based_on=None, tags=None, synchronization_kind='global', mem_kind=None, within_inames=None)[source]#

Takes in a kernel that needs to be added a barrier and returns a kernel which has a barrier inserted into it. It takes input of 2 instructions and then adds a barrier in between those 2 instructions. The expressions can be any inputs that are understood by loopy.match.parse_match().

Parameters:
  • insn_before โ€“ String expression that specifies the instruction(s) before the barrier which is to be added. If None, no dependencies will be added to barrier.

  • insn_after โ€“ String expression that specifies the instruction(s) after the barrier which is to be added. If None, no dependencies on the barrier will be added.

  • id โ€“ String on which the id of the barrier would be based on.

  • tags โ€“ The tag of the group to which the barrier must be added

  • synchronization_kind โ€“ Kind of barrier to be added. May be โ€œglobalโ€ or โ€œlocalโ€

  • kind โ€“ Type of memory to be synchronized. May be โ€œglobalโ€ or โ€œlocalโ€. Ignored for โ€œglobalโ€ barriers. If not supplied, defaults to synchronization_kind

  • within_inames โ€“ A frozenset of inames identifying the loops within which the barrier will be executed.

Registering Library Routines#

loopy.register_reduction_parser(parser)[source]#

Register a new loopy.library.reduction.ReductionOperation.

Parameters:

parser โ€“ A function that receives a string and returns a subclass of ReductionOperation.

loopy.register_preamble_generators(kernel: LoopKernel, preamble_generators)[source]#
Parameters:

manglers โ€“ list of functions of signature (preamble_info) generating tuples (sortable_str_identifier, code), where preamble_info is a PreambleInfo.

Returns:

kernel with manglers registered

loopy.register_symbol_manglers(kernel, manglers)[source]#

Modifying Arguments#

loopy.set_argument_order(kernel, arg_names)[source]#
Parameters:

arg_names โ€“ A list (or comma-separated string) or argument names. All arguments must be in this list.

loopy.add_dtypes(prog_or_kernel, dtype_dict)[source]#

Specify remaining unspecified argument/temporary variable types.

Parameters:

dtype_dict โ€“ a mapping from variable names to numpy.dtype instances

loopy.infer_unknown_types(program, expect_completion=False)[source]#

Infer types on temporaries and arguments.

loopy.add_and_infer_dtypes(prog, dtype_dict, expect_completion=False, kernel_name=None)[source]#
loopy.rename_argument(kernel, old_name, new_name, existing_ok=False)[source]#

New in version 2016.2.

loopy.set_temporary_address_space(kernel, temp_var_names, address_space)[source]#
Parameters:
  • temp_var_names โ€“ a container with membership checking, or a comma-separated string of variables for which the address space is to be set.

  • address_space โ€“ One of the values from loopy.AddressSpace, or one of the strings "private", "local", or "global".

Creating Batches of Operations#

loopy.to_batched(kernel, nbatches, batch_varying_args, batch_iname_prefix='ibatch', sequential=False)[source]#

Takes in a kernel that carries out an operation and returns a kernel that carries out a batch of these operations.

Note

For temporaries in a kernel that are private or read only globals and if sequential=True, loopy does not does not batch these variables unless explicitly mentioned in batch_varying_args.

Parameters:
  • nbatches โ€“ the number of batches. May be a constant non-negative integer or a string, which will be added as an integer argument.

  • batch_varying_args โ€“ a list of argument names that vary per-batch. Each such variable will have a batch index added.

  • sequential โ€“ A bool. If True, do not duplicate temporary variables for each batch. This automatically tags the batch iname for sequential execution.

Finishing up#

loopy.preprocess_kernel(t_unit: TranslationUnit) TranslationUnit[source]#
loopy.generate_loop_schedules(kernel: LoopKernel, callables_table: Mapping[str, InKernelCallable], debug_args: Dict[str, Any] | None = None) Iterator[LoopKernel][source]#

Warning

This function needs to be called inside (another layer) of a loopy.schedule.MinRecursionLimitForScheduling context manager, and the context manager needs to end after the last reference to the generators has gone out of scope. Otherwise, the high-recursion-limit generator chain may not be successfully garbage-collected and cause an internal error in the Python runtime.

loopy.get_one_linearized_kernel(kernel, callables_table)[source]#
loopy.save_and_reload_temporaries(program, entrypoint=None)[source]#

Add instructions to save and reload temporary variables that are live across kernel calls.

The basic code transformation turns schedule segments:

t = <...>
<return followed by call>
<...> = t

into this code:

t = <...>
t_save_slot = t
<return followed by call>
t = t_save_slot
<...> = t

where t_save_slot is a newly-created global temporary variable.

Returns:

The resulting kernel

class loopy.GeneratedProgram(name: str, is_device_program: bool, ast: Any, body_ast: Any | None = None)[source]#
name#
is_device_program#
ast#

Once generated, this captures the AST of the overall function definition, including the body.

body_ast#

Once generated, this captures the AST of the operative function body (including declaration of necessary temporaries), but not the overall function definition.

class loopy.CodeGenerationResult(host_program: GeneratedProgram | None, device_programs: Sequence[GeneratedProgram], implemented_domains: Mapping[str, Set], host_preambles: Sequence[Tuple[str, str]] = (), device_preambles: Sequence[Tuple[str, str]] = ())[source]#
host_program#
device_programs#

A list of GeneratedProgram instances intended to run on the compute device.

implemented_domains#

A mapping from instruction ID to a list of islpy.Set objects.

host_preambles#
device_preambles#
host_code()[source]#
device_code()[source]#
all_code()[source]#
loopy.generate_code_v2(program)[source]#

Returns an instance of CodeGenerationResult.

Parameters:

program โ€“ An instance of loopy.TranslationUnit.

loopy.generate_header(kernel, codegen_result=None)[source]#
Parameters:
Returns:

a list of AST nodes (which may have str called on them to produce a string) representing function declarations for the generated device functions.

Setting options#

loopy.set_options(kernel, *args, **kwargs)[source]#

Return a new kernel with the options given as keyword arguments, or from a string representation passed in as the first (and only) positional argument.

See also Options.

Matching contexts#

TODO: Matching instruction tags

class loopy.match.Matchable(*args, **kwargs)[source]#
tags#
class loopy.match.StackMatchComponent[source]#
abstract __call__(kernel: LoopKernel, stack: Sequence[Matchable]) bool[source]#

Call self as a function.

class loopy.match.StackMatch(root_component: StackMatchComponent)[source]#
__call__(kernel: LoopKernel, insn: InstructionBase, rule_stack: Sequence[Tuple[str, FrozenSet[Tag]]]) bool[source]#
Parameters:

rule_stack โ€“ a tuple of (name, tags) rule invocation, outermost first

loopy.match.parse_match(expr)[source]#

Syntax examples:

* ``id:yoink and writes:a_temp``
* ``id:yoink and (not writes:a_temp or tag:input)``
loopy.match.parse_stack_match(smatch: StackMatch | str | None) StackMatch[source]#

Syntax example:

... > outer > ... > next > innermost $
insn > next
insn > ... > next > innermost $

... matches an arbitrary number of intervening stack levels.

Each of the entries is a match expression as understood by parse_match().

Match expressions#

class loopy.match.MatchExpressionBase[source]#
class loopy.match.All[source]#
class loopy.match.And(children: Sequence[MatchExpressionBase])[source]#
class loopy.match.Or(children: Sequence[MatchExpressionBase])[source]#
class loopy.match.Not(child: loopy.match.MatchExpressionBase)[source]#
class loopy.match.Id(glob: str)[source]#
class loopy.match.ObjTagged(tag: Tag)[source]#

Match if the object is tagged with a given Tag.

Note

These instance-based tags will, in the not-too-distant future, replace the string-based tags matched by Tagged.

class loopy.match.Tagged(glob: str)[source]#

Match a string-based tagged using a glob expression.

Note

These string-based tags will, in the not-too-distant future, be replace by instance-based tags matched by ObjTagged.

class loopy.match.Writes(glob: str)[source]#
class loopy.match.Reads(glob: str)[source]#
class loopy.match.InKernel(glob: str)[source]#
class loopy.match.Iname(glob: str)[source]#