diff options
author | Martin Storsjö <martin@martin.st> | 2023-10-12 23:31:33 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2024-09-27 00:04:30 +0300 |
commit | e6eabb7ce757a03bb52909b3f10b920f9892a2a6 (patch) | |
tree | 87cba18686a62db16959385fb339fa9302ef2804 /tests/checkasm/checkasm.c | |
parent | e6e56fd7a7738c30f3052067ba35cba346fdde8c (diff) | |
download | ffmpeg-e6eabb7ce757a03bb52909b3f10b920f9892a2a6.tar.gz |
aarch64: Add CPU feature flags for SVE and SVE2
Add code for detecting the feature on Linux and Windows.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'tests/checkasm/checkasm.c')
-rw-r--r-- | tests/checkasm/checkasm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c index 73a998ae3a..c932e028a5 100644 --- a/tests/checkasm/checkasm.c +++ b/tests/checkasm/checkasm.c @@ -305,6 +305,8 @@ static const struct { { "NEON", "neon", AV_CPU_FLAG_NEON }, { "DOTPROD", "dotprod", AV_CPU_FLAG_DOTPROD }, { "I8MM", "i8mm", AV_CPU_FLAG_I8MM }, + { "SVE", "sve", AV_CPU_FLAG_SVE }, + { "SVE2", "sve2", AV_CPU_FLAG_SVE2 }, #elif ARCH_ARM { "ARMV5TE", "armv5te", AV_CPU_FLAG_ARMV5TE }, { "ARMV6", "armv6", AV_CPU_FLAG_ARMV6 }, |