https://github.com/halide/Halide
Raw File
Tip revision: 3f7e8908b8871d1ce167037b5f877a664c044358 authored by Steven Johnson on 14 April 2022, 20:25:29 UTC
Python: make Func implicitly convertible to Stage (#6702) (#6708)
Tip revision: 3f7e890
PyParam.h
#ifndef HALIDE_PYTHON_BINDINGS_PYPARAM_H
#define HALIDE_PYTHON_BINDINGS_PYPARAM_H

#include "PyHalide.h"

namespace Halide {
namespace PythonBindings {

void define_param(py::module &m);

}  // namespace PythonBindings
}  // namespace Halide

#endif  // HALIDE_PYTHON_BINDINGS_PYPARAM_H
back to top