"...src/pages/extract/components/pdf-upload-button/index.tsx" did not exist on "9d689790eb8db7103105a79eb53cdf377ba30f11"
constant_empty_scalar_int64_test.cpp 304 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#include <onnx_test.hpp>


TEST_CASE(constant_empty_scalar_int64_test)
{
    migraphx::program p;
    auto* mm = p.get_main_module();
    mm->add_literal(migraphx::literal{migraphx::shape::int64_type});
    auto prog = optimize_onnx("constant_empty_scalar_int64_test.onnx");

    EXPECT(p == prog);
}