onnx.hpp 238 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
#ifndef GUARD_MIGRAPHLIB_ONNX_HPP
#define GUARD_MIGRAPHLIB_ONNX_HPP

#include <migraph/program.hpp>

namespace migraph {

Paul's avatar
Paul committed
8
/// Create a program from an onnx file
Paul's avatar
Paul committed
9
10
11
12
13
program parse_onnx(const std::string& name);

} // namespace migraph

#endif