https://github.com/halide/Halide
Raw File
Tip revision: ecad269ed3d758fe4b6fe89118b712070a4ad6fe authored by Andrew Adams on 05 October 2020, 23:56:18 UTC
Use switch statement instead of if sequence
Tip revision: ecad269
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