microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
billti/num2-sim

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/resource_estimator/src/estimates.rs

25lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4mod error;
5pub use error::Error;
6mod error_budget;
7pub use error_budget::{ErrorBudget, ErrorBudgetStrategy};
8mod error_correction;
9pub use error_correction::{
10 CodeWithThresholdAndDistance, CodeWithThresholdAndDistanceEvaluator, ErrorCorrection,
11};
12mod factory;
13pub use factory::{
14 BuilderDispatch2, DistillationRound, DistillationUnit, Factory, FactoryBuildError,
15 FactoryBuilder, FactoryDispatch2, NoFactories, PhysicalQubitCalculation, RoundBasedFactory,
16};
17mod physical_estimation;
18pub use physical_estimation::{
19 FactoryPart, PhysicalResourceEstimation, PhysicalResourceEstimationResult,
20};
21mod layout;
22mod logical_qubit;
23pub use layout::{Overhead, RealizedOverhead};
24pub use logical_qubit::LogicalPatch;
25pub mod optimization;
26