https://github.com/halide/Halide
Raw File
Tip revision: c48a8206c7f5cc51347a35b211e7ff90f24867f1 authored by Volodymyr Kysenko on 14 December 2022, 00:29:39 UTC
Address review comments
Tip revision: c48a820
CodeGen_D3D12Compute_Dev.h
#ifndef HALIDE_CODEGEN_D3D12_COMPUTE_DEV_H
#define HALIDE_CODEGEN_D3D12_COMPUTE_DEV_H

/** \file
 * Defines the code-generator for producing D3D12-compatible HLSL kernel code
 */

#include <memory>

namespace Halide {

struct Target;

namespace Internal {

struct CodeGen_GPU_Dev;

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

}  // namespace Internal
}  // namespace Halide

#endif
back to top