https://github.com/halide/Halide
Raw File
Tip revision: c0202215e423a9182da6c6a877223e9a9a5bc7e9 authored by Steven Johnson on 08 December 2022, 22:30:48 UTC
Update qurt_allocator.cpp
Tip revision: c020221
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