We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5eaab commit 9c58da2Copy full SHA for 9c58da2
src/aarch64.rs
@@ -9,7 +9,7 @@ const CHUNK: usize = 64;
9
/// Distance (in bytes) to prefetch ahead. Must be a multiple of 8 for PRFM.
10
/// Keeping ~4 iterations (4 × CHUNK = 256 B) ahead strikes a good balance
11
/// between hiding memory latency and not evicting useful cache lines.
12
-const PREFETCH_DISTANCE: usize = CHUNK * 4;
+const PREFETCH_DISTANCE: usize = CHUNK * 8;
13
14
pub fn encode_str<S: AsRef<str>>(input: S) -> String {
15
let s = input.as_ref();
0 commit comments