Reference guide: Overview¶
General Remarks¶
Creation via Static Methods¶
To map more directly to the isl’s C interface, object creation in islpy
is done through static methods instead of through constructors. These are
marked ‘(static)’ in each class’s overview section.
Documented vs. Non-documented Functionality¶
Since islpy
is automatically generated from the isl C headers, some of
the functionality it exposes might be undocumented. Undocumented functionality
might change or vanish without notice. ‘Documented’ functionality is defined as
whatever is mentioned in the isl manual. islpy
will let you call
undocumented functions, but you are doing so at your own risk.
Invalidation of Arguments¶
You may notice that a few methods below say ‘(becomes invalid)’. This has to do with an idiosyncrasy in isl’s interface that was retained at the Python level for efficiency. Such arguments will be deleted (by isl) upon entry to the called function. If you would like to retain access to that object, simply append a .copy() to that argument. (Note that you will notice if an object got deleted for you accidentally, as the next operation on it will simply fail with an exception.)
Integers¶
Whenever an integer argument is required, islpy
supports regular Python
integers and Python long
integers. It will return Python long integers.
Automatic Casts¶
islpy
will automatically perform the following upward casts in argument
lists:
Called with |
Argument Type |
---|---|
as well as casts contained in the transitive closure of this ‘casting graph’.
Version Info¶
- islpy.version¶
- islpy.isl_version()¶
Error Reporting¶
- exception islpy.Error¶
Convenience¶
- islpy.make_zero_and_vars(set_vars, params=(), ctx=None)¶
- Parameters:
set_vars – an iterable of variable names, or a comma-separated string
params – an iterable of variable names, or a comma-separated string
- Returns:
a dictionary from variable names (in set_vars and params) to
PwAff
instances that represent each of the variables. They key ‘0’ is also include and represents aPwAff
zero constant.
Added in version 2016.1.1.
This function is intended to make it relatively easy to construct sets programmatically without resorting to string manipulation.
Usage example:
v = isl.make_zero_and_vars("i,j,k", "n") myset = ( v[0].le_set(v["i"] + v["j"]) & (v["i"] + v["j"]).lt_set(v["n"]) & (v[0].le_set(v["i"])) & (v["i"].le_set(13 + v["n"])) )
- islpy.affs_from_space(space)¶
- Returns:
a dictionary from variable names (in set_vars and params) to
PwAff
instances that represent each of the variables in*space. They key ‘0’ is also include and represents aPwAff
zero constant.
Added in version 2016.2.
This function is intended to make it relatively easy to construct sets programmatically without resorting to string manipulation.
Usage example:
s = isl.Set("[n] -> {[i,j,k]: 0<=i,j,k<n}") v = isl.affs_from_space(s.space) myset = ( v[0].le_set(v["i"] + v["j"]) & (v["i"] + v["j"]).lt_set(v["n"]) & (v[0].le_set(v["i"])) & (v["i"].le_set(13 + v["n"])) )
Lifetime Helpers¶
Global Data¶
Symbolic Constants¶
- class islpy.error(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)¶
- abort = 1¶
- alloc = 2¶
- internal = 4¶
- invalid = 5¶
- none = 0¶
- quota = 6¶
- unknown = 3¶
- unsupported = 7¶
- class islpy.dim_type(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)¶
- all = 5¶
- cst = 0¶
- div = 4¶
- in_ = 2¶
- out = 3¶
- param = 1¶
- set = 3¶
- class islpy.fold(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)¶
- list = 2¶
- max = 1¶
- min = 0¶
Output¶
- class islpy.Printer¶
- __eq__(value, /)¶
Return self==value.
- __hash__()¶
Return hash(self).
- __ne__(value, /)¶
Return self!=value.
- ast_op_type_set_print_name(self, type, name)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)type –
ast_expr_op_type
name – string
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- end_line(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- flush(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- get_ctx(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- get_note(self, id)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- get_output_format(self)¶
- Parameters:
self –
Printer
- Returns:
int
Warning
This function is not part of the officially public isl API. Use at your own risk.
- get_str(self)¶
- Parameters:
self –
Printer
- Returns:
string
Warning
This function is not part of the officially public isl API. Use at your own risk.
- get_yaml_style(self)¶
- Parameters:
self –
Printer
- Returns:
int
Warning
This function is not part of the officially public isl API. Use at your own risk.
- has_note(self, id)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- indent(self, indent)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_aff(self, aff)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_aff_list(self, list)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_ast_expr(self, expr)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_ast_expr_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
AstExprList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_ast_node(self, node)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_ast_node_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
AstNodeList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_basic_map(self, bmap)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_basic_map_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
BasicMapList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_basic_set(self, bset)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_basic_set_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
BasicSetList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_constraint(self, c)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)c –
Constraint
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_constraint_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
ConstraintList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_double(self, d)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_id(self, id)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_id_list(self, list)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_int(self, i)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_local_space(self, ls)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)ls –
LocalSpace
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_map(self, map)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_map_list(self, list)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_multi_aff(self, maff)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_multi_id(self, mi)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_multi_pw_aff(self, mpa)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)mpa –
MultiPwAff
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_multi_union_pw_aff(self, mupa)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)mupa –
MultiUnionPwAff
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_multi_val(self, mv)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_point(self, pnt)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_aff(self, pwaff)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_aff_list(self, list)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_multi_aff(self, pma)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)pma –
PwMultiAff
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_multi_aff_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
PwMultiAffList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_qpolynomial(self, pwqp)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)pwqp –
PwQPolynomial
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_qpolynomial_fold(self, pwf)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)pwf –
PwQPolynomialFold
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_qpolynomial_fold_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
PwQPolynomialFoldList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_pw_qpolynomial_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
PwQPolynomialList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_qpolynomial(self, qp)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)qp –
QPolynomial
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_qpolynomial_fold(self, fold)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)fold –
QPolynomialFold
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_qpolynomial_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
QPolynomialList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_schedule(self, schedule)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_schedule_constraints(self, sc)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)sc –
ScheduleConstraints
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_schedule_node(self, node)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)node –
ScheduleNode
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_set(self, map)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_set_list(self, list)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_space(self, space)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_str(self, s)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_access_info(self, access)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)access –
UnionAccessInfo
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_flow(self, flow)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_map(self, umap)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_map_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
UnionMapList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_pw_aff(self, upa)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)upa –
UnionPwAff
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_pw_aff_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
UnionPwAffList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_pw_multi_aff(self, upma)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)upma –
UnionPwMultiAff
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_pw_multi_aff_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
UnionPwMultiAffList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_pw_qpolynomial(self, upwqp)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)upwqp –
UnionPwQPolynomial
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_pw_qpolynomial_fold(self, upwf)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)upwf –
UnionPwQPolynomialFold
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_set(self, uset)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_union_set_list(self, list)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)list –
UnionSetList
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_val(self, v)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_val_list(self, list)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- print_vec(self, vec)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_indent(self, indent)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_indent_prefix(self, prefix)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)prefix – string
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_isl_int_width(self, width)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_note(self, id, note)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_output_format(self, output_format)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_prefix(self, prefix)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)prefix – string
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_suffix(self, suffix)¶
- Parameters:
self –
Printer
(mutated in-place) (mutated in-place)suffix – string
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- set_yaml_style(self, yaml_style)¶
- Parameters:
- Returns:
Printer
(self)
Warning
This function is not part of the officially public isl API. Use at your own risk.
- start_line(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- to_str = <nanobind.nb_func object>¶
- yaml_end_mapping(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- yaml_end_sequence(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- yaml_next(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
- yaml_start_mapping(self)¶
-
Warning
This function is not part of the officially public isl API. Use at your own risk.
Helper functions¶
- islpy.align_spaces(obj, template, obj_bigger_ok=False, across_dim_types=None)¶
Try to make the space in which obj lives the same as that of template by adding/matching named dimensions.
- Parameters:
obj_bigger_ok – If True, no error is raised if the resulting obj has more dimensions than template.
- islpy.align_two(obj1, obj2, across_dim_types=None)¶
Align the spaces of two objects, potentially modifying both of them.
See also
align_spaces()
.
Canonical Names for Internal Module¶
- class islpy._isl.stat¶
A status result.
- class islpy._isl.error¶
See
islpy.error
.
- class islpy._isl.dim_type¶
See
islpy.dim_type
.
- class islpy._isl.fold¶
See
islpy.fold
.
- class islpy._isl.format¶
See
islpy.format
.
- class islpy._isl.yaml_style¶
See
islpy.yaml_style
.
- class islpy._isl.Printer¶
See
islpy.Printer
.