diff --git a/python/dune/perftool/ufl/visitor.py b/python/dune/perftool/ufl/visitor.py index e7d32af11f8271d78b5cce100397bb7b6602c3f0..c9b9e65151509049bbe4353098e31f962052461d 100644 --- a/python/dune/perftool/ufl/visitor.py +++ b/python/dune/perftool/ufl/visitor.py @@ -293,7 +293,7 @@ class UFL2LoopyVisitor(ModifiedTerminalTracker): return self._evaluate_function(np.exp, "exp", self.call(o.ufl_operands[0])) def sqrt(self, o): - return self._evaluate_function(sqrt, "sqrt", self.call(o.ufl_operands[0])) + return self._evaluate_function(np.sqrt, "sqrt", self.call(o.ufl_operands[0])) def power(self, o): from ufl.constantvalue import IntValue