[FFmpeg-cvslog] tests/cpu: print the RISC-V Vector length

Rémi Denis-Courmont git at videolan.org
Sun Nov 17 11:29:27 EET 2024


ffmpeg | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Nov 16 09:19:12 2024 +0200| [42dd1f1cf13d02381c10461a7bcfcddc63ad211d] | committer: Rémi Denis-Courmont

tests/cpu: print the RISC-V Vector length

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=42dd1f1cf13d02381c10461a7bcfcddc63ad211d
---

 libavutil/tests/cpu.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/libavutil/tests/cpu.c b/libavutil/tests/cpu.c
index 9e45527408..1eb3055ff0 100644
--- a/libavutil/tests/cpu.c
+++ b/libavutil/tests/cpu.c
@@ -25,6 +25,8 @@
 
 #if ARCH_AARCH64
 #include "libavutil/aarch64/cpu.h"
+#elif ARCH_RISCV
+#include "libavutil/riscv/cpu.h"
 #endif
 
 #if HAVE_UNISTD_H
@@ -170,6 +172,12 @@ int main(int argc, char **argv)
 #if ARCH_AARCH64 && HAVE_SVE
     if (cpu_flags_raw & AV_CPU_FLAG_SVE)
         printf("sve_vector_length = %d\n", 8 * ff_aarch64_sve_length());
+#elif ARCH_RISCV && HAVE_RVV
+    if (cpu_flags_raw & AV_CPU_FLAG_RVV_I32) {
+        size_t bytes = ff_get_rv_vlenb();
+
+        printf("rv_vlenb = %zu (%zu bits)\n", bytes, 8 * bytes);
+    }
 #endif
 
     return 0;



More information about the ffmpeg-cvslog mailing list