Skip to content

Commit 4cc3c58

Browse files
Add a new argument concurrent_measurements to target class (Qiskit#10258)
* fix measure_v2 * modify measure_all * dispatch backend * add test of the builder with backendV2 * reconfigure test codes and some func * refactoring * add reno * fix _measure_v2 * fix backend.meas_map in measure_v2 * fix reno * delete get_qubit_channels from utils * add get_qubits_channels in qubit_channels * recostruct test about the builder with backendV2 * add meas_map to Target class * fix after mergin main branch * fix documents about meas_map * format target.py * add reno * add meas_map to target in convert_to_target * add the more description about meas_map * Update releasenotes/notes/enable_target_aware_meas_map-0d8542402a74e9d8.yaml Co-authored-by: Naoki Kanazawa <nkanazawa1989@gmail.com> * fix test_meas_map * remove format_meas_map * rename meas_map in target to concurrent_measuments * change reno * remove Unused Union Dict * concurrent_measurements set as getattr(configuration, meas_map) * Update qiskit/transpiler/target.py Co-authored-by: Naoki Kanazawa <nkanazawa1989@gmail.com> * Update qiskit/transpiler/target.py Co-authored-by: Naoki Kanazawa <nkanazawa1989@gmail.com> * format --------- Co-authored-by: Naoki Kanazawa <nkanazawa1989@gmail.com>
1 parent 78ebc61 commit 4cc3c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qiskit_ibm_provider/fake_provider/utils/backend_converter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def convert_to_target(conf_dict: dict, props_dict: dict = None, defs_dict: dict
4343
qubit_props = None
4444
if props_dict:
4545
qubit_props = qubit_props_from_props(props_dict)
46-
target = Target(qubit_properties=qubit_props)
46+
target = Target(qubit_properties=qubit_props, concurrent_measurements=conf_dict.get("meas_map"))
4747
# Parse from properties if it exsits
4848
if props_dict is not None:
4949
# Parse instructions

0 commit comments

Comments
 (0)