From 19c0927540d3cadc4004a2201d2ead162833833c Mon Sep 17 00:00:00 2001 From: Yaiza Date: Tue, 5 Nov 2024 12:40:45 +0100 Subject: [PATCH] Fixes names --- .../wrappers/ai_local_linear_function_synthesis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qiskit_ibm_transpiler/wrappers/ai_local_linear_function_synthesis.py b/qiskit_ibm_transpiler/wrappers/ai_local_linear_function_synthesis.py index 0c5a637..c2e2f98 100644 --- a/qiskit_ibm_transpiler/wrappers/ai_local_linear_function_synthesis.py +++ b/qiskit_ibm_transpiler/wrappers/ai_local_linear_function_synthesis.py @@ -14,7 +14,7 @@ import networkx as nx from networkx.exception import NetworkXError -from ai_transpiler import LinearFunctionInference +from qiskit_ibm_ai_local_transpiler import AILinearFunctionInference from typing import Union, List @@ -112,7 +112,7 @@ def get_synthesized_linear_function_circuits( # Generate the Clifford from the dictionary to send it to the model and permute it clifford = perm_cliff(Clifford.from_dict(clifford_dicts[index]), subgraph_perm) - synthesized_linear_function = LinearFunctionInference().synthesize( + synthesized_linear_function = AILinearFunctionInference().synthesize( cliff=clifford, coupling_map_hash=cmap_hash )