https://github.com/halide/Halide
Raw File
Tip revision: 3c0dbf3621cefe8352661fc0d88de3d5944c26fb authored by Volodymyr Kysenko on 17 May 2022, 22:46:12 UTC
Add const to auto&
Tip revision: 3c0dbf3
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