FFmpeg
cpu.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "libavutil/cpu.h"
20 #include "libavutil/cpu_internal.h"
21 #include "config.h"
22 
23 #if (defined(__linux__) || defined(__ANDROID__)) && HAVE_GETAUXVAL
24 #include <stdint.h>
25 #include <sys/auxv.h>
26 
27 #define HWCAP_AARCH64_ASIMDDP (1 << 20)
28 #define HWCAP2_AARCH64_I8MM (1 << 13)
29 
30 static int detect_flags(void)
31 {
32  int flags = 0;
33 
34  unsigned long hwcap = getauxval(AT_HWCAP);
35  unsigned long hwcap2 = getauxval(AT_HWCAP2);
36 
37  if (hwcap & HWCAP_AARCH64_ASIMDDP)
39  if (hwcap2 & HWCAP2_AARCH64_I8MM)
41 
42  return flags;
43 }
44 
45 #elif defined(__APPLE__) && HAVE_SYSCTLBYNAME
46 #include <sys/sysctl.h>
47 
48 static int have_feature(const char *feature) {
49  uint32_t value = 0;
50  size_t size = sizeof(value);
51  if (!sysctlbyname(feature, &value, &size, NULL, 0))
52  return value;
53  return 0;
54 }
55 
56 static int detect_flags(void)
57 {
58  int flags = 0;
59 
60  if (have_feature("hw.optional.arm.FEAT_DotProd"))
62  if (have_feature("hw.optional.arm.FEAT_I8MM"))
64 
65  return flags;
66 }
67 
68 #elif defined(_WIN32)
69 #include <windows.h>
70 
71 static int detect_flags(void)
72 {
73  int flags = 0;
74 #ifdef PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE
75  if (IsProcessorFeaturePresent(PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE))
77 #endif
78  return flags;
79 }
80 #else
81 
82 static int detect_flags(void)
83 {
84  return 0;
85 }
86 
87 #endif
88 
90 {
91  int flags = AV_CPU_FLAG_ARMV8 * HAVE_ARMV8 |
92  AV_CPU_FLAG_NEON * HAVE_NEON;
93 
94 #ifdef __ARM_FEATURE_DOTPROD
96 #endif
97 #ifdef __ARM_FEATURE_MATMUL_INT8
99 #endif
100 
101  flags |= detect_flags();
102 
103  return flags;
104 }
105 
107 {
108  int flags = av_get_cpu_flags();
109 
110  if (flags & AV_CPU_FLAG_NEON)
111  return 16;
112 
113  return 8;
114 }
AV_CPU_FLAG_DOTPROD
#define AV_CPU_FLAG_DOTPROD
Definition: cpu.h:72
av_get_cpu_flags
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition: cpu.c:103
cpu_internal.h
ff_get_cpu_max_align_aarch64
size_t ff_get_cpu_max_align_aarch64(void)
Definition: cpu.c:106
NULL
#define NULL
Definition: coverity.c:32
ff_get_cpu_flags_aarch64
int ff_get_cpu_flags_aarch64(void)
Definition: cpu.c:89
detect_flags
static int detect_flags(void)
Definition: cpu.c:82
AV_CPU_FLAG_I8MM
#define AV_CPU_FLAG_I8MM
Definition: cpu.h:73
cpu.h
AV_CPU_FLAG_NEON
#define AV_CPU_FLAG_NEON
Definition: cpu.h:69
size
int size
Definition: twinvq_data.h:10344
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
AV_CPU_FLAG_ARMV8
#define AV_CPU_FLAG_ARMV8
Definition: cpu.h:70
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:474