diff --git a/src/gxhash/mod.rs b/src/gxhash/mod.rs index d5995e6..3d43b0a 100644 --- a/src/gxhash/mod.rs +++ b/src/gxhash/mod.rs @@ -128,7 +128,7 @@ pub(crate) unsafe fn compress_all(input: &[u8]) -> State { #[inline(always)] unsafe fn compress_many(mut ptr: *const State, end: usize, hash_vector: State, len: usize) -> State { - const UNROLL_FACTOR: usize = 8; + const UNROLL_FACTOR: usize = 32; let remaining_bytes = end - ptr as usize;