feat(optimizer): create optimizer dag and use it

This commit is contained in:
rudy
2022-05-27 18:18:10 +02:00
committed by Quentin Bourgerie
parent bd3d462384
commit cc6c2576ec
26 changed files with 628 additions and 112 deletions

View File

@@ -350,6 +350,6 @@ def test_compile_and_run_invalid_arg_number(
def test_compile_invalid(mlir_input):
engine = JITSupport.new()
with pytest.raises(
RuntimeError, match=r"cannot find the function for generate client parameters"
RuntimeError, match=r"Could not find existing crypto parameters for"
):
engine.compile(mlir_input)