onnx.hpp 361 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
#ifndef MIGRAPH_GUARD_MIGRAPHLIB_ONNX_HPP
#define MIGRAPH_GUARD_MIGRAPHLIB_ONNX_HPP
Paul's avatar
Paul committed
3
4

#include <migraph/program.hpp>
5
#include <migraph/config.hpp>
Paul's avatar
Paul committed
6

7
namespace migraph { inline namespace MIGRAPH_INLINE_NS {
Paul's avatar
Paul committed
8

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

12
} // inline namespace MIGRAPH_INLINE_NS
Paul's avatar
Paul committed
13
14
15
} // namespace migraph

#endif