https://github.com/halide/Halide
Raw File
Tip revision: d0aa0e7a3fb152dc5da33d4358110374c5a0dc73 authored by Steven Johnson on 13 September 2023, 00:35:32 UTC
Merge branch 'main' into pdb/fix_7806
Tip revision: d0aa0e7
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