Halide
CodeGen_Vulkan_Dev.h
Go to the documentation of this file.
1 #ifndef HALIDE_CODEGEN_VULKAN_DEV_H
2 #define HALIDE_CODEGEN_VULKAN_DEV_H
3 
4 /** \file
5  * Defines the code-generator for producing SPIR-V binary modules for
6  * use with the Vulkan runtime
7  */
8 
9 #include <memory>
10 
11 namespace Halide {
12 
13 struct Target;
14 
15 namespace Internal {
16 
17 struct CodeGen_GPU_Dev;
18 
19 std::unique_ptr<CodeGen_GPU_Dev> new_CodeGen_Vulkan_Dev(const Target &target);
20 
21 } // namespace Internal
22 } // namespace Halide
23 
24 #endif
Halide
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
Definition: AbstractGenerator.h:19
Halide::LinkageType::Internal
@ Internal
Not visible externally, similar to 'static' linkage in C.
Halide::Internal::new_CodeGen_Vulkan_Dev
std::unique_ptr< CodeGen_GPU_Dev > new_CodeGen_Vulkan_Dev(const Target &target)