refactor: rename [jit|library]lambdasupport to [jit|library]support

This commit is contained in:
youben11
2022-03-31 20:17:10 +01:00
committed by Ayoub Benaissa
parent 583d5edf00
commit 78def04fe5
19 changed files with 117 additions and 134 deletions

View File

@@ -4,10 +4,7 @@ import tempfile
import pytest
import numpy as np
from concrete.compiler.client_support import ClientSupport
from concrete.compiler.compilation_options import CompilationOptions
from concrete.compiler.jit_lambda_support import JITLambdaSupport
from concrete.compiler.key_set_cache import KeySetCache
from concrete.compiler import ClientSupport, CompilationOptions, JITSupport, KeySetCache
KEY_SET_CACHE_PATH = os.path.join(tempfile.gettempdir(), "KeySetCache")
@@ -69,5 +66,5 @@ def compile_and_run(engine, mlir_input, args, expected_result):
],
)
def test_compile_and_run_parallel(mlir_input, args, expected_result):
engine = JITLambdaSupport.new()
engine = JITSupport.new()
compile_and_run(engine, mlir_input, args, expected_result)