https://github.com/halide/Halide
Raw File
Tip revision: 50917257e6367e01eb81eec20cf4466437273262 authored by Andrew Adams on 27 August 2021, 17:44:40 UTC
Rename inner version of bounds_of_expr_in_scope
Tip revision: 5091725
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