Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions loopy/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -1768,6 +1768,9 @@ def check_implemented_domains(kernel, implemented_domains, code=None):

from islpy import align_two

if kernel.options.disable_implemented_domains_check:
return True

last_idomains = None
last_insn_inames = None

Expand Down
4 changes: 4 additions & 0 deletions loopy/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ class Options(ImmutableRecord):

.. attribute:: disable_global_barriers

.. attribute:: disable_implemented_domains_check

.. attribute:: enforce_variable_access_ordered

If *True*, require that
Expand Down Expand Up @@ -267,6 +269,8 @@ def __init__(
"enforce_array_accesses_within_bounds", True),
insert_gbarriers=kwargs.get(
"insert_gbarriers", False),
disable_implemented_domains_check=kwargs.get(
"disable_implemented_domains_check", False),
)

# {{{ legacy compatibility
Expand Down