Skip to content

Commit

Permalink
Revert "Silence Pymbolic warning pending proper fix"
Browse files Browse the repository at this point in the history
This reverts commit 87f1ce0.
  • Loading branch information
wence- committed Oct 11, 2019
1 parent 99d10ca commit cedb0bb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pyop2/codegen/rep2loopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,10 +467,7 @@ def generate(builder, wrapper_name=None):

if isinstance(kernel._code, loopy.LoopKernel):
knl = kernel._code
import warnings
with warnings.catch_warnings():
warnings.simplefilter("ignore")
wrapper = loopy.register_callable_kernel(wrapper, knl)
wrapper = loopy.register_callable_kernel(wrapper, knl)
from loopy.transform.callable import _match_caller_callee_argument_dimension_
wrapper = _match_caller_callee_argument_dimension_(wrapper, knl.name)
wrapper = loopy.inline_callable_kernel(wrapper, knl.name)
Expand Down

0 comments on commit cedb0bb

Please sign in to comment.