Skip to content

Commit 218ae7b

Browse files
committed
Some clean up
1 parent 019575f commit 218ae7b

File tree

9 files changed

+133
-157
lines changed

9 files changed

+133
-157
lines changed

Cargo.lock

Lines changed: 12 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/pecos-engines/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ serde.workspace = true
2222
serde_json.workspace = true
2323
rand.workspace = true
2424
rand_chacha.workspace = true
25-
rand_distr = "0.4.3"
2625
bytemuck.workspace = true
2726
bitflags.workspace = true
2827
dyn-clone.workspace = true

crates/pecos-engines/src/engines/noise.rs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
// Copyright 2025 The PECOS Developers
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4+
// in compliance with the License.You may obtain a copy of the License at
5+
//
6+
// https://www.apache.org/licenses/LICENSE-2.0
7+
//
8+
// Unless required by applicable law or agreed to in writing, software distributed under the License
9+
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10+
// or implied. See the License for the specific language governing permissions and limitations under
11+
// the License.
12+
113
//! Quantum noise models for realistic quantum computation simulation
214
//!
315
//! This module provides various noise models that can be used to simulate
@@ -24,6 +36,9 @@ pub use sampler::{CachedSampler, PrecisionLevel, Sampler, SamplingMethod};
2436
// Re-export the generic sampler types
2537
pub use type_cache_samplers::{
2638
TypeCachedTableSampler8Bit, TypeCachedTableSampler16Bit, TypeCachedTableSampler32Bit,
39+
TypeCachedTableSampler64Bit, TypeCachedTwoQubitTableSampler8Bit,
40+
TypeCachedTwoQubitTableSampler16Bit, TypeCachedTwoQubitTableSampler32Bit,
41+
TypeCachedTwoQubitTableSampler64Bit,
2742
};
2843

2944
use crate::byte_message::ByteMessage;

0 commit comments

Comments
 (0)