Skip to content

Commit e813a0c

Browse files
committed
update a comment that's not really true anymore
1 parent 4e4bac2 commit e813a0c

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/kernels/dit.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub fn fft_dit_chunk_2<S: Simd, T: Float>(_simd: S, reals: &mut [T], imags: &mut
2828
}
2929

3030
/// DIT butterfly for chunk_size == 4 (f64)
31-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
31+
#[inline(never)] // otherwise every kernel gets inlined into the parent
3232
pub fn fft_dit_chunk_4_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f64]) {
3333
simd.vectorize(
3434
#[inline(always)]
@@ -78,7 +78,7 @@ fn fft_dit_chunk_4_simd_f64<S: Simd>(_simd: S, reals: &mut [f64], imags: &mut [f
7878
}
7979

8080
/// DIT butterfly for chunk_size == 4 (f32)
81-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
81+
#[inline(never)] // otherwise every kernel gets inlined into the parent
8282
pub fn fft_dit_chunk_4_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f32]) {
8383
simd.vectorize(
8484
#[inline(always)]
@@ -128,7 +128,7 @@ fn fft_dit_chunk_4_simd_f32<S: Simd>(_simd: S, reals: &mut [f32], imags: &mut [f
128128
}
129129

130130
/// DIT butterfly for chunk_size == 8 (f64) with SIMD
131-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
131+
#[inline(never)] // otherwise every kernel gets inlined into the parent
132132
pub fn fft_dit_chunk_8_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f64]) {
133133
simd.vectorize(
134134
#[inline(always)]
@@ -190,7 +190,7 @@ fn fft_dit_chunk_8_simd_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f6
190190
}
191191

192192
/// DIT butterfly for chunk_size == 8 (f32) with SIMD
193-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
193+
#[inline(never)] // otherwise every kernel gets inlined into the parent
194194
pub fn fft_dit_chunk_8_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f32]) {
195195
simd.vectorize(
196196
#[inline(always)]
@@ -252,7 +252,7 @@ fn fft_dit_chunk_8_simd_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f3
252252
}
253253

254254
/// DIT butterfly for chunk_size == 16 (f64)
255-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
255+
#[inline(never)] // otherwise every kernel gets inlined into the parent
256256
pub fn fft_dit_chunk_16_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f64]) {
257257
simd.vectorize(
258258
#[inline(always)]
@@ -324,7 +324,7 @@ fn fft_dit_chunk_16_simd_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f
324324
}
325325

326326
/// DIT butterfly for chunk_size == 16 (f32)
327-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
327+
#[inline(never)] // otherwise every kernel gets inlined into the parent
328328
pub fn fft_dit_chunk_16_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f32]) {
329329
simd.vectorize(
330330
#[inline(always)]
@@ -395,7 +395,7 @@ fn fft_dit_chunk_16_simd_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f
395395
});
396396
}
397397
/// DIT butterfly for chunk_size == 32 (f64)
398-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
398+
#[inline(never)] // otherwise every kernel gets inlined into the parent
399399
pub fn fft_dit_chunk_32_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f64]) {
400400
simd.vectorize(
401401
#[inline(always)]
@@ -520,7 +520,7 @@ fn fft_dit_chunk_32_simd_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f
520520
}
521521

522522
/// DIT butterfly for chunk_size == 32 (f32)
523-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
523+
#[inline(never)] // otherwise every kernel gets inlined into the parent
524524
pub fn fft_dit_chunk_32_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f32]) {
525525
simd.vectorize(
526526
#[inline(always)]
@@ -607,7 +607,7 @@ fn fft_dit_chunk_32_simd_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f
607607
}
608608

609609
/// DIT butterfly for chunk_size == 64 (f64)
610-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
610+
#[inline(never)] // otherwise every kernel gets inlined into the parent
611611
pub fn fft_dit_chunk_64_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f64]) {
612612
simd.vectorize(
613613
#[inline(always)]
@@ -817,7 +817,7 @@ fn fft_dit_chunk_64_simd_f64<S: Simd>(simd: S, reals: &mut [f64], imags: &mut [f
817817
}
818818

819819
/// DIT butterfly for chunk_size == 64 (f32)
820-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
820+
#[inline(never)] // otherwise every kernel gets inlined into the parent
821821
pub fn fft_dit_chunk_64_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f32]) {
822822
simd.vectorize(
823823
#[inline(always)]
@@ -967,7 +967,7 @@ fn fft_dit_chunk_64_simd_f32<S: Simd>(simd: S, reals: &mut [f32], imags: &mut [f
967967
}
968968

969969
/// General DIT butterfly for f64
970-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
970+
#[inline(never)] // otherwise every kernel gets inlined into the parent
971971
pub fn fft_dit_chunk_n_f64<S: Simd>(
972972
simd: S,
973973
reals: &mut [f64],
@@ -1044,7 +1044,7 @@ fn fft_dit_chunk_n_simd_f64<S: Simd>(
10441044
}
10451045

10461046
/// General DIT butterfly for f32
1047-
#[inline(never)] // otherwise every kernel gets inlined into the parent and ARM perf drops due to register pressure
1047+
#[inline(never)] // otherwise every kernel gets inlined into the parent
10481048
pub fn fft_dit_chunk_n_f32<S: Simd>(
10491049
simd: S,
10501050
reals: &mut [f32],

0 commit comments

Comments
 (0)