You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if input.len() < CHUNK_SIZE_AVX || !cpuid_avx2::get(){
134
+
if!has_avx2() || input.len() < CHUNK_SIZE_AVX{
115
135
return generic::decode_unchecked(input, output);
116
136
}
117
137
decode_avx2(input, output);
118
138
}
119
139
120
140
/// Modified from [`faster-hex`](https://github.com/nervosnetwork/faster-hex/blob/856aba7b141a5fe16113fae110d535065882f25a/src/decode.rs).
0 commit comments