From f550f7aa407ed533ba0b5a64754375ccfdbe5f66 Mon Sep 17 00:00:00 2001 From: ruiren Date: Mon, 29 Jan 2024 06:26:42 +0000 Subject: [PATCH] update unitest --- onnxruntime/test/optimizer/graph_transform_test.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/onnxruntime/test/optimizer/graph_transform_test.cc b/onnxruntime/test/optimizer/graph_transform_test.cc index fbfa43e3d3ee7..bd125b7318335 100755 --- a/onnxruntime/test/optimizer/graph_transform_test.cc +++ b/onnxruntime/test/optimizer/graph_transform_test.cc @@ -7651,10 +7651,6 @@ TEST_F(GraphTransformationTests, GatherSliceToSplitFusion) { auto* reshape_out = builder.MakeIntermediate({{2, 512, 73, 64}}); builder.AddNode("Reshape", {data_arg, reshape_arg}, {reshape_out}); - // Create Shape-0 Ops - auto* shape_output_0 = builder.MakeOutput(); - builder.AddNode("Shape", {reshape_out}, {shape_output_0}); - // Create Gather-1 Ops auto* gather_index_1 = builder.MakeInitializer({}, {static_cast(-2)}); auto* gather_out_1 = builder.MakeIntermediate({{2, 512, 1, 64}});