https://github.com/halide/Halide
Raw File
Tip revision: 661258a6eb19902697deda5fb7eb63ee8e54ef4a authored by Xuanda Yang on 06 November 2023, 23:46:16 UTC
add missing serialization of Dim::partition_policy
Tip revision: 661258a
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