Skip to content

Commit

Permalink
fix: unrolling result indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 committed Aug 27, 2024
1 parent 1333b10 commit f4b7769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibocal/protocols/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def _acquisition(
for qubit in targets:
serial = ro_pulses[qubit]
if params.unrolling:
result = results[serial][ig]
result = results[serial][0][ig]
else:
result = results[ig][serial][0]
data.register_qubit(
Expand Down

0 comments on commit f4b7769

Please sign in to comment.