https://github.com/halide/Halide
Raw File
Tip revision: 1d073daa65c05e2ba46e3d52f741b61f2c0163b7 authored by Steven Johnson on 07 February 2024, 18:52:08 UTC
Fix clang-tidy error in runtime.printer.h (parameter shadows member)
Tip revision: 1d073da
CodeGen_PTX_Dev.h
#ifndef HALIDE_CODEGEN_PTX_DEV_H
#define HALIDE_CODEGEN_PTX_DEV_H

/** \file
 * Defines the code-generator for producing CUDA host code
 */

#include <memory>

namespace Halide {

struct Target;

namespace Internal {

struct CodeGen_GPU_Dev;

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

}  // namespace Internal
}  // namespace Halide

#endif
back to top