Skip to content

Commit

Permalink
Fix fftw version
Browse files Browse the repository at this point in the history
  • Loading branch information
SallySoul committed Nov 6, 2024
1 parent 729abf9 commit a8245da
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
colorous = "1.0.14"
fftw = { path = "/Users/russell/projects/rust/fftw3-rs/fftw", features = ["system"] }
fftw = { git = "https://github.com/SallySoul/fftw3-rs.git", tag = "fftw3-v0.8.1" }

image = "0.25.2"
num = "0.4.3"
Expand Down
4 changes: 0 additions & 4 deletions examples/heat_2d_p_fft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,6 @@ fn main() {
fft_backwards_buffer[i] = fft_ic_output_buffer[i];
}

for i in 0..width * height {
fft_ic_input_buffer[i] = 0.0;
}

backward_plan
.c2r(&mut fft_backwards_buffer, &mut fft_ic_input_buffer)
.unwrap();
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ pub mod domain;
pub mod linear_stencil;
pub mod naive_solver;
pub mod stencil;
pub mod squaring;

0 comments on commit a8245da

Please sign in to comment.