Halide 22.0.0
Halide compiler and libraries
Loading...
Searching...
No Matches
vulkan_extensions.h
Go to the documentation of this file.
1#ifndef HALIDE_RUNTIME_VULKAN_EXTENSIONS_H
2#define HALIDE_RUNTIME_VULKAN_EXTENSIONS_H
3
4#include "vulkan_internal.h"
5
6// --------------------------------------------------------------------------
7
8namespace Halide {
9namespace Runtime {
10namespace Internal {
11namespace Vulkan {
12
13// --------------------------------------------------------------------------
14
15WEAK char layer_names[1024];
18
22
23WEAK char device_type[256];
26
30
31WEAK char alloc_config[1024];
34
35// --------------------------------------------------------------------------
36namespace {
37
38void vk_set_layer_names_internal(const char *n) {
39 if (n) {
40 size_t buffer_size = sizeof(layer_names) / sizeof(layer_names[0]);
42 } else {
43 layer_names[0] = 0;
44 }
46}
47
50 const char *value = getenv("HL_VK_LAYERS");
51 if (value == nullptr) {
52 value = getenv("VK_INSTANCE_LAYERS");
53 }
55 }
56 return layer_names;
57}
58
59void vk_set_extension_names_internal(const char *n) {
60 if (n) {
61 size_t buffer_size = sizeof(extension_names) / sizeof(extension_names[0]);
63 } else {
64 extension_names[0] = 0;
65 }
67}
68
71 const char *name = getenv("HL_VK_EXTENSIONS");
73 }
74 return extension_names;
75}
76
77void vk_set_device_type_internal(const char *n) {
78 if (n) {
79 size_t buffer_size = sizeof(device_type) / sizeof(device_type[0]);
81 } else {
82 device_type[0] = 0;
83 }
85}
86
89 const char *name = getenv("HL_VK_DEVICE_TYPE");
91 }
92 return device_type;
93}
94
95void vk_set_build_options_internal(const char *n) {
96 if (n) {
97 size_t buffer_size = sizeof(build_options) / sizeof(build_options[0]);
99 } else {
100 build_options[0] = 0;
101 }
103}
104
107 const char *name = getenv("HL_VK_BUILD_OPTIONS");
109 }
110 return build_options;
111}
112
113void vk_set_alloc_config_internal(const char *n) {
114 if (n) {
115 size_t buffer_size = sizeof(alloc_config) / sizeof(alloc_config[0]);
117 } else {
118 alloc_config[0] = 0;
119 }
121}
122
125 const char *name = getenv("HL_VK_ALLOC_CONFIG");
127 }
128 return alloc_config;
129}
130
131// --------------------------------------------------------------------------
132
137}
138
140 // Don't require any instance extensions (unless there are features we can't query for later ...)
141 return 0;
142}
143
145 const char *optional_ext_table[] = {
147 VK_EXT_DEBUG_UTILS_EXTENSION_NAME}; //< optional on all versions
150 return optional_ext_count;
151}
152
154
156 vkGetInstanceProcAddr(nullptr, "vkEnumerateInstanceExtensionProperties");
157
159 debug(user_context) << "Vulkan: Missing vkEnumerateInstanceExtensionProperties proc address! Invalid loader?!\n";
160 return 0;
161 }
162
163 debug(user_context) << "Vulkan: Checking vkEnumerateInstanceExtensionProperties for extensions ...\n";
164
167
168 if (avail_ext_count) {
170 config.entry_size = sizeof(VkExtensionProperties);
172
175
178
179 for (uint32_t n = 0; n < avail_ext_count; ++n) {
180 const VkExtensionProperties *properties = static_cast<const VkExtensionProperties *>(extension_properties[n]);
181 debug(user_context) << " [" << n << "]: " << properties->extensionName << "\n";
182 }
183
185 for (uint32_t n = 0; n < avail_ext_count; ++n) {
186 const VkExtensionProperties *properties = static_cast<const VkExtensionProperties *>(extension_properties[n]);
187 ext_table.assign(user_context, n, properties->extensionName);
188 }
189 }
190 debug(user_context) << "Vulkan: vkEnumerateInstanceExtensionProperties found " << avail_ext_count << " extensions ...\n";
191 return avail_ext_count;
192}
193
195 // Only require device extensions that have *not* been promoted to the current major, minor version
196 // supported by the Vulkan device (since the extension string may be missing once it has been promoted)
197 const char *before_v1p1_ext_table[] = {
198 VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME}; // promoted to core in v1.1
200
201 const char *before_v1p2_ext_table[] = {
203 VK_KHR_8BIT_STORAGE_EXTENSION_NAME}; // promoted to core in v1.2
205
207 if (major_version >= 1) {
208 if (minor_version < 1) {
211 } else if (minor_version < 2) {
214 }
215 }
216 return required_ext_count;
217}
218
220 // Only add optional device extensions that have *not* been promoted to the current major, minor version
221 // supported by the Vulkan device (since the extension string may be missing once it has been promoted)
222 const char *before_v1p1_ext_table[] = {
223 VK_KHR_16BIT_STORAGE_EXTENSION_NAME}; //< promoted to core in v1.1
225
226 const char *before_v1p2_ext_table[] = {
228 "VK_KHR_portability_subset", //< requires v1.1, always optional, necessary for running under Molten (aka Vulkan on Mac)
229 VK_KHR_SHADER_FLOAT16_INT8_EXTENSION_NAME, //< promoted to core in v1.2
230 VK_KHR_SHADER_FLOAT_CONTROLS_EXTENSION_NAME}; //< promoted to core in v1.2
232
233 const char *v1p3_ext_table[] = {
234 "VK_KHR_portability_subset", //< requires v1.1, always optional, necessary for running under Molten (aka Vulkan on Mac)
235 VK_KHR_MAINTENANCE_5_EXTENSION_NAME}; //< requires v1.3
236 const uint32_t v1p3_ext_count = sizeof(v1p3_ext_table) / sizeof(v1p3_ext_table[0]);
237
239 if (major_version >= 1) {
240 if (minor_version < 1) {
243 } else if (minor_version < 2) {
246 } else if (minor_version >= 3) {
249 }
250 }
251 return optional_ext_count;
252}
253
255 debug(user_context) << "vk_get_supported_device_extensions\n";
257 debug(user_context) << "Vulkan: Missing vkEnumerateDeviceExtensionProperties proc address! Invalid loader?!\n";
258 return 0;
259 }
260
261 debug(user_context) << "Vulkan: Checking vkEnumerateDeviceExtensionProperties for extensions ...\n";
262
264 vkEnumerateDeviceExtensionProperties(physical_device, nullptr, &avail_ext_count, nullptr);
265 if (avail_ext_count > 0) {
267 config.entry_size = sizeof(VkExtensionProperties);
269
272
273 vkEnumerateDeviceExtensionProperties(physical_device, nullptr,
275
276 for (uint32_t n = 0; n < avail_ext_count; ++n) {
277 const VkExtensionProperties *properties = static_cast<const VkExtensionProperties *>(extension_properties[n]);
278 debug(user_context) << " [" << n << "]: " << properties->extensionName << "\n";
279 }
280
282 for (uint32_t n = 0; n < avail_ext_count; ++n) {
283 const VkExtensionProperties *properties = static_cast<const VkExtensionProperties *>(extension_properties[n]);
284 ext_table.assign(user_context, n, properties->extensionName);
285 }
286 }
287
288 debug(user_context) << "Vulkan: vkEnumerateDeviceExtensionProperties found " << avail_ext_count << " extensions ...\n";
289 return avail_ext_count;
290}
291
295 debug(user_context) << "Vulkan: Validating " << uint32_t(required_extensions.size()) << " extensions ...\n";
296 bool validated = true;
297 for (uint32_t n = 0; n < required_extensions.size(); ++n) {
298 const char *extension = required_extensions[n];
299 if (!supported_extensions.contains(extension)) {
300 debug(user_context) << "Vulkan: Missing required extension: '" << extension << "'!\n";
301 validated = false;
302 }
303 }
304 return validated;
305}
306
307// --------------------------------------------------------------------------
308
309} // namespace
310} // namespace Vulkan
311} // namespace Internal
312} // namespace Runtime
313} // namespace Halide
314
315// --------------------------------------------------------------------------
316
318
319// --------------------------------------------------------------------------
320
321extern "C" {
322
323// --------------------------------------------------------------------------
324
327 vk_set_layer_names_internal(n);
328}
329
332 return vk_get_layer_names_internal(user_context);
333}
334
337 vk_set_extension_names_internal(n);
338}
339
342 return vk_get_extension_names_internal(user_context);
343}
344
347 vk_set_device_type_internal(n);
348}
349
352 return vk_get_device_type_internal(user_context);
353}
354
357 vk_set_build_options_internal(n);
358}
359
362 return vk_get_build_options_internal(user_context);
363}
364
367 vk_set_alloc_config_internal(n);
368}
369
372 return vk_get_alloc_config_internal(user_context);
373}
374
375// --------------------------------------------------------------------------
376
377} // extern "C"
378
379#endif // HALIDE_RUNTIME_VULKAN_EXTENSIONS_H
#define debug(n)
For optional debugging during codegen, use the debug macro as follows:
Definition Debug.h:52
WEAK ScopedSpinLock::AtomicFlag alloc_config_lock
WEAK ScopedSpinLock::AtomicFlag extension_names_lock
WEAK ScopedSpinLock::AtomicFlag layer_names_lock
WEAK ScopedSpinLock::AtomicFlag build_options_lock
WEAK ScopedSpinLock::AtomicFlag device_type_lock
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
@ Internal
Not visible externally, similar to 'static' linkage in C.
Internal::ConstantInterval cast(Type t, const Internal::ConstantInterval &a)
Cast operators for ConstantIntervals.
unsigned __INT32_TYPE__ uint32_t
#define WEAK
char * getenv(const char *)
bool contains(int32_t x) const
Test if the interval contains a particular value.
static size_t copy_up_to(char *dst, const char *src, size_t max_chars)
WEAK void halide_vulkan_set_layer_names(const char *n)
WEAK void halide_vulkan_set_build_options(const char *n)
WEAK void halide_vulkan_set_extension_names(const char *n)
WEAK void halide_vulkan_set_device_type(const char *n)
WEAK const char * halide_vulkan_get_alloc_config(void *user_context)
WEAK const char * halide_vulkan_get_layer_names(void *user_context)
WEAK void halide_vulkan_set_alloc_config(const char *n)
WEAK const char * halide_vulkan_get_build_options(void *user_context)
WEAK const char * halide_vulkan_get_extension_names(void *user_context)
WEAK const char * halide_vulkan_get_device_type(void *user_context)
#define HL_VK_ENV_DELIM
void * user_context