mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-22 04:21:40 +08:00
feat: introduce fuzzy search for native indexer (#14109)
This commit is contained in:
@@ -73,8 +73,8 @@ impl BufferedResampler {
|
||||
} else {
|
||||
// interleave
|
||||
let out_len = out_blocks[0].len();
|
||||
#[allow(clippy::needless_range_loop)]
|
||||
for i in 0..out_len {
|
||||
#[allow(clippy::needless_range_loop)]
|
||||
// apply clippy lint suggestion would regress performance
|
||||
for ch in 0..self.channels {
|
||||
interleaved_out.push(out_blocks[ch][i]);
|
||||
|
||||
Reference in New Issue
Block a user