dyn_model_test.cpp 185 Bytes
Newer Older
charlie's avatar
charlie committed
1
2
3
4
5
6
7
8
9
#include <migraphx/onnx.hpp>

int main()
{
    migraphx::onnx_options options;
    options.default_dyn_dim_value = {1, 10, 0};

    migraphx::parse_onnx("resnet50_v1.onnx", options);
}