https://github.com/halide/Halide
Raw File
Tip revision: f38443f72c4783c15bb1420039df83050feba422 authored by Steven Johnson on 19 April 2022, 18:51:53 UTC
Update IROperator.cpp
Tip revision: f38443f
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