Skip to content

Commit

Permalink
Merge pull request #1 from soumyasen1809/backup_2nd_cleanup_complex_i…
Browse files Browse the repository at this point in the history
…ssue35

Backup 2nd cleanup complex issue35 is merged back
  • Loading branch information
soumyasen1809 authored Sep 30, 2024
2 parents 5f21bce + aa20466 commit 1474fb0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4"
order-stat = "0.1"
puruspe = "0.2"
matrixmultiply = { version = "0.3", features = ["threading", "cgemm"] }
matrixmultiply = { version = "0.3", features = ["threading"] }
peroxide-ad = "0.3"
peroxide-num = "0.1"
anyhow = "1.0"
Expand Down
9 changes: 6 additions & 3 deletions tests/complex_matrix.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
// #[macro_use]
extern crate peroxide;
use num_complex::Complex64;
use peroxide::{complex::matrix::ComplexMatrix, fuga::*};
#[allow(unused_imports)]
use peroxide::fuga::*;

#[cfg(feature = "complex")]
#[test]
fn test_seq() {
use num_complex::Complex64;
use peroxide::complex::matrix::ComplexMatrix;

let v1 = ComplexMatrix {
data: vec![
Complex64::new(1f64, 1f64),
Expand Down

0 comments on commit 1474fb0

Please sign in to comment.