"src/targets/vscode:/vscode.git/clone" did not exist on "a41781309c44672b2e33a4ffc02d7340bdac80d4"
Commit f9691e2e authored by Paul's avatar Paul
Browse files

Format

parent 93c89587
#include <onnx_test.hpp>
TEST_CASE(const_of_shape_dyn_int64_test)
{
migraphx::program p;
......@@ -19,5 +18,3 @@ TEST_CASE(const_of_shape_dyn_int64_test)
auto prog = parse_onnx("const_of_shape_dyn_int64_test.onnx", options);
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(const_of_shape_empty_input_test)
{
migraphx::program p;
......@@ -14,5 +13,3 @@ TEST_CASE(const_of_shape_empty_input_test)
auto prog = optimize_onnx("const_of_shape_empty_input_test.onnx");
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(const_of_shape_float_test)
{
migraphx::program p;
......@@ -15,5 +14,3 @@ TEST_CASE(const_of_shape_float_test)
auto prog = optimize_onnx("const_of_shape_float_test.onnx");
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(const_of_shape_int64_test)
{
migraphx::program p;
......@@ -17,5 +16,3 @@ TEST_CASE(const_of_shape_int64_test)
auto prog = optimize_onnx("const_of_shape_int64_test.onnx");
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(const_of_shape_no_value_attr_test)
{
migraphx::program p;
......@@ -15,5 +14,3 @@ TEST_CASE(const_of_shape_no_value_attr_test)
auto prog = optimize_onnx("const_of_shape_no_value_attr_test.onnx");
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_empty_scalar_int64_test)
{
migraphx::program p;
......@@ -11,5 +10,3 @@ TEST_CASE(constant_empty_scalar_int64_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_fill_input_as_shape_test)
{
migraphx::program p;
......@@ -17,5 +16,3 @@ TEST_CASE(constant_fill_input_as_shape_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_fill_test)
{
migraphx::program p;
......@@ -13,5 +12,3 @@ TEST_CASE(constant_fill_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_multiple_attributes_test)
{
EXPECT(test::throws([&] { optimize_onnx("constant_multiple_attributes_test.onnx"); }));
}
#include <onnx_test.hpp>
TEST_CASE(constant_no_attributes_test)
{
EXPECT(test::throws([&] { optimize_onnx("constant_no_attributes_test.onnx"); }));
}
#include <onnx_test.hpp>
TEST_CASE(constant_one_val_int64_test)
{
migraphx::program p;
......@@ -11,5 +10,3 @@ TEST_CASE(constant_one_val_int64_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_scalar_test)
{
migraphx::program p;
......@@ -11,5 +10,3 @@ TEST_CASE(constant_scalar_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_test)
{
migraphx::program p;
......@@ -12,5 +11,3 @@ TEST_CASE(constant_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_value_float_test)
{
migraphx::program p;
......@@ -11,5 +10,3 @@ TEST_CASE(constant_value_float_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_value_floats_test)
{
migraphx::program p;
......@@ -12,5 +11,3 @@ TEST_CASE(constant_value_floats_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_value_int_test)
{
migraphx::program p;
......@@ -11,5 +10,3 @@ TEST_CASE(constant_value_int_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(constant_value_ints_test)
{
migraphx::program p;
......@@ -12,5 +11,3 @@ TEST_CASE(constant_value_ints_test)
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(conv_1d_test)
{
migraphx::program p;
......@@ -16,5 +15,3 @@ TEST_CASE(conv_1d_test)
auto prog = optimize_onnx("conv_1d_test.onnx");
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(conv_3d_test)
{
migraphx::program p;
......@@ -17,5 +16,3 @@ TEST_CASE(conv_3d_test)
auto prog = optimize_onnx("conv_3d_test.onnx");
EXPECT(p == prog);
}
#include <onnx_test.hpp>
TEST_CASE(conv_attr_fail_test)
{
EXPECT(test::throws([&] { migraphx::parse_onnx("conv_attr_fail_test.onnx"); }));
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment