Skip to content

Commit

Permalink
is_noisy
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Aug 4, 2024
1 parent 4591580 commit 191378f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qook"
version = "0.11.1"
version = "0.11.2"
license = "MIT"
description = "qook - Pure Rust unitaryfund/qrack Wrapper"
documentation = "https://pyqrack.readthedocs.io/en/latest/"
Expand Down
5 changes: 3 additions & 2 deletions src/qrack_simulator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ impl QrackSimulator {
is_paged: bool,
is_cpu_gpu_hybrid: bool,
is_opencl: bool,
is_host_pointer: bool) -> Result<Self, QrackError> {
is_host_pointer: bool,
is_noisy: bool) -> Result<Self, QrackError> {

let sid;
if is_tensor_network
Expand Down Expand Up @@ -88,7 +89,7 @@ impl QrackSimulator {
is_stabilizer_hybrid,
is_binary_decision_tree,
is_paged,
false,
is_noisy,
is_cpu_gpu_hybrid,
is_opencl,
is_host_pointer);
Expand Down

0 comments on commit 191378f

Please sign in to comment.