https://github.com/halide/Halide
Raw File
Tip revision: 29196bc88a715e4aff5aa16ab6068491dbab0128 authored by Andrew Adams on 16 April 2020, 21:17:54 UTC
If a constant wildcard doesn't actually need to be constant, make it so.
Tip revision: 29196bc
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