microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/resource_estimator/src/system/data.rs
25lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | mod constraints; |
| 5 | mod job_params; |
| 6 | mod logical_counts; |
| 7 | mod physical_counts; |
| 8 | mod report; |
| 9 | mod result; |
| 10 | mod tfactory; |
| 11 | |
| 12 | pub use constraints::Constraints; |
| 13 | pub use job_params::{EstimateType, JobParams, PartitioningOverhead}; |
| 14 | pub use logical_counts::{LayoutReportData, LogicalResourceCounts}; |
| 15 | pub use physical_counts::{PhysicalResourceCounts, PhysicalResourceCountsBreakdown}; |
| 16 | pub use report::{FormattedPhysicalResourceCounts, Report}; |
| 17 | pub use result::{Failure, Success}; |
| 18 | |
| 19 | #[cfg(test)] |
| 20 | pub use tfactory::{ |
| 21 | TFactoryDistillationUnitSpecification, TFactoryProtocolSpecificDistillationUnitSpecification, |
| 22 | }; |
| 23 | |
| 24 | #[cfg(test)] |
| 25 | pub use job_params::ErrorBudgetSpecification; |
| 26 | |