Skip to content

Commit

Permalink
Add insn_count_subgroups_upper_bound warning in all our Loo.py kernel…
Browse files Browse the repository at this point in the history
… generation functions.
  • Loading branch information
sv2518 committed Jul 18, 2022
1 parent 8aff2c4 commit cdee089
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsfc/loopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,8 @@ def generate(impero_c, args, scalar_type, kernel_name="loopy_kernel", index_name

# Create loopy kernel
knl = lp.make_function(domains, instructions, data, name=kernel_name, target=target,
seq_dependencies=True, silenced_warnings=["summing_if_branches_ops", "single_writer_after_creation", "unused_inames"],
seq_dependencies=True, silenced_warnings=["summing_if_branches_ops", "single_writer_after_creation",
"unused_inames", "insn_count_subgroups_upper_bound"],
lang_version=(2018, 2), preambles=preamble)

# Prevent loopy interchange by loopy
Expand Down

0 comments on commit cdee089

Please sign in to comment.