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/system/data.rs

25lines · modecode

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