mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
refactor: rename [jit|library]lambdasupport to [jit|library]support
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user