Skip to content

Commit 54ee8f2

Browse files
committed
set opt_level=3 as default for lambdify with llvm backend
1 parent 402d955 commit 54ee8f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

symengine/lib/symengine_wrapper.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4755,7 +4755,7 @@ cdef class LambdaDouble(_Lambdify):
47554755

47564756
IF HAVE_SYMENGINE_LLVM:
47574757
cdef class LLVMDouble(_Lambdify):
4758-
def __cinit__(self, args, *exprs, cppbool real=True, order='C', cppbool cse=False, cppbool _load=False, opt_level=0):
4758+
def __cinit__(self, args, *exprs, cppbool real=True, order='C', cppbool cse=False, cppbool _load=False, opt_level=3):
47594759
self.opt_level = opt_level
47604760

47614761
cdef _init(self, symengine.vec_basic& args_, symengine.vec_basic& outs_, cppbool cse):

0 commit comments

Comments
 (0)