From b315bb59b922ce183cd77ef5d1dd8a179effd64a Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Tue, 17 Dec 2024 21:04:49 -0500 Subject: [PATCH] Populating total circuit failure rate in openfermion accounting --- src/benchq/resource_estimators/openfermion_estimator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/benchq/resource_estimators/openfermion_estimator.py b/src/benchq/resource_estimators/openfermion_estimator.py index 6d995c45..4fd6ea28 100644 --- a/src/benchq/resource_estimators/openfermion_estimator.py +++ b/src/benchq/resource_estimators/openfermion_estimator.py @@ -221,6 +221,7 @@ def openfermion_estimator( resource_info = OpenFermionResourceInfo( n_physical_qubits=best_cost.physical_qubit_count, total_time_in_seconds=best_cost.duration, + total_circuit_failure_rate=best_cost.algorithm_failure_probability, optimization="Space", n_abstract_logical_qubits=best_params.max_allocated_logical_qubits, decoder_info=decoder_info,