diff options
| author | alexsifivetw <alex.chiang@sifive.com> | 2023-06-19 03:05:11 -0700 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2023-06-23 19:44:22 +0200 |
| commit | 2f4ebe2bb68380366b90f1db1f3c5b32601130a0 (patch) | |
| tree | 65d03e327d4e09d67843790f6c9c89a4636706fc /cpu_features.h | |
| parent | 8f045434d95fc442288d07331c5177c273858c50 (diff) | |
| download | Project-Tick-2f4ebe2bb68380366b90f1db1f3c5b32601130a0.tar.gz Project-Tick-2f4ebe2bb68380366b90f1db1f3c5b32601130a0.zip | |
Optimize slide_hash using RVV
Diffstat (limited to 'cpu_features.h')
| -rw-r--r-- | cpu_features.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpu_features.h b/cpu_features.h index fb43d90a26..f47ddf0d48 100644 --- a/cpu_features.h +++ b/cpu_features.h @@ -267,6 +267,9 @@ extern void slide_hash_vmx(deflate_state *s); #if defined(POWER8_VSX) extern void slide_hash_power8(deflate_state *s); #endif +#if defined(RISCV_RVV) +extern void slide_hash_rvv(deflate_state *s); +#endif #ifdef X86_AVX2 extern void slide_hash_avx2(deflate_state *s); #endif |
