Skip to content

Commit 56e889f

Browse files
committed
remove fft rotation
1 parent fbf58aa commit 56e889f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/algorithm/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,6 @@ fn fft_impl(
803803
// SAFETY: Uiua's `Complex` and `num_complex::Complex64` have the same memory layout
804804
let slice: &mut [Complex64] = unsafe { transmute::<&mut [Complex], &mut [Complex64]>(row) };
805805
fft.process(slice);
806-
row.rotate_left(1);
807806
for c in row {
808807
*c = *c * scaling_factor;
809808
}

0 commit comments

Comments
 (0)