https://github.com/halide/Halide
Raw File
Tip revision: e4dafd2a153a6c7953f5fd04217f9da1f1e3513b authored by Steven Johnson on 29 March 2023, 18:11:20 UTC
Revert "Promote fixed-point intrinsics out of the Internal namespace (#7446)"
Tip revision: e4dafd2
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