https://github.com/halide/Halide
Raw File
Tip revision: 5a09d40fc3468df0956b02c2558207042e14fa53 authored by Aelphy on 15 December 2023, 19:54:20 UTC
Style fixes + C++-17 compliance
Tip revision: 5a09d40
CodeGen_Vulkan_Dev.h
#ifndef HALIDE_CODEGEN_VULKAN_DEV_H
#define HALIDE_CODEGEN_VULKAN_DEV_H

/** \file
 * Defines the code-generator for producing SPIR-V binary modules for
 * use with the Vulkan runtime
 */

#include <memory>

namespace Halide {

struct Target;

namespace Internal {

struct CodeGen_GPU_Dev;

std::unique_ptr<CodeGen_GPU_Dev> new_CodeGen_Vulkan_Dev(const Target &target);

}  // namespace Internal
}  // namespace Halide

#endif
back to top