Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: cargo fmt --all -- --check

- name: Run cargo clippy
run: cargo clippy -- -D warnings
run: cargo clippy --all-targets -- -D warnings

check_test_aarch64:
name: Check and test Linux arm 64bit
Expand Down
4 changes: 2 additions & 2 deletions src/sinc_interpolator/sinc_interpolator_avx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ mod tests {
wave.push(rng.gen::<f64>());
}
let sinc_len = 256;
let f_cutoff = 0.9473371669037001;
let f_cutoff = 0.94733715;
let oversampling_factor = 256;
let window = WindowFunction::BlackmanHarris2;
let sincs = make_sincs::<f64>(sinc_len, oversampling_factor, f_cutoff, window);
Expand All @@ -265,7 +265,7 @@ mod tests {
wave.push(rng.gen::<f32>());
}
let sinc_len = 256;
let f_cutoff = 0.9473371669037001;
let f_cutoff = 0.94733715;
let oversampling_factor = 256;
let window = WindowFunction::BlackmanHarris2;
let sincs = make_sincs::<f32>(sinc_len, oversampling_factor, f_cutoff, window);
Expand Down
4 changes: 2 additions & 2 deletions src/sinc_interpolator/sinc_interpolator_sse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ mod tests {
wave.push(rng.gen::<f64>());
}
let sinc_len = 256;
let f_cutoff = 0.9473371669037001;
let f_cutoff = 0.94733715;
let oversampling_factor = 256;
let window = WindowFunction::BlackmanHarris2;
let sincs = make_sincs::<f64>(sinc_len, oversampling_factor, f_cutoff, window);
Expand All @@ -269,7 +269,7 @@ mod tests {
wave.push(rng.gen::<f32>());
}
let sinc_len = 256;
let f_cutoff = 0.9473371669037001;
let f_cutoff = 0.94733715;
let oversampling_factor = 256;
let window = WindowFunction::BlackmanHarris2;
let sincs = make_sincs::<f32>(sinc_len, oversampling_factor, f_cutoff, window);
Expand Down