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(__OpenBSD__)
69 #include <machine/armreg.h>
70 #include <machine/cpu.h>
71 #include <sys/types.h>
72 #include <sys/sysctl.h>
73 
74 static int detect_flags(void)
75 {
76  int flags = 0;
77 
78 #ifdef CPU_ID_AA64ISAR0
79  int mib[2];
80  uint64_t isar0;
81  uint64_t isar1;
82  size_t len;
83 
84  mib[0] = CTL_MACHDEP;
85  mib[1] = CPU_ID_AA64ISAR0;
86  len = sizeof(isar0);
87  if (sysctl(mib, 2, &isar0, &len, NULL, 0) != -1) {
88  if (ID_AA64ISAR0_DP(isar0) >= ID_AA64ISAR0_DP_IMPL)
90  }
91 
92  mib[0] = CTL_MACHDEP;
93  mib[1] = CPU_ID_AA64ISAR1;
94  len = sizeof(isar1);
95  if (sysctl(mib, 2, &isar1, &len, NULL, 0) != -1) {
96 #ifdef ID_AA64ISAR1_I8MM_IMPL
97  if (ID_AA64ISAR1_I8MM(isar1) >= ID_AA64ISAR1_I8MM_IMPL)
99 #endif
100  }
101 #endif
102 
103  return flags;
104 }
105 
106 #elif defined(_WIN32)
107 #include <windows.h>
108 
109 static int detect_flags(void)
110 {
111  int flags = 0;
112 #ifdef PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE
113  if (IsProcessorFeaturePresent(PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE))
115 #endif
116  return flags;
117 }
118 #else
119 
120 static int detect_flags(void)
121 {
122  return 0;
123 }
124 
125 #endif
126 
128 {
129  int flags = AV_CPU_FLAG_ARMV8 * HAVE_ARMV8 |
130  AV_CPU_FLAG_NEON * HAVE_NEON;
131 
132 #ifdef __ARM_FEATURE_DOTPROD
134 #endif
135 #ifdef __ARM_FEATURE_MATMUL_INT8
137 #endif
138 
139  flags |= detect_flags();
140 
141  return flags;
142 }
143 
145 {
146  int flags = av_get_cpu_flags();
147 
148  if (flags & AV_CPU_FLAG_NEON)
149  return 16;
150 
151  return 8;
152 }
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:144
NULL
#define NULL
Definition: coverity.c:32
ff_get_cpu_flags_aarch64
int ff_get_cpu_flags_aarch64(void)
Definition: cpu.c:127
detect_flags
static int detect_flags(void)
Definition: cpu.c:120
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
len
int len
Definition: vorbis_enc_data.h:426
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:474