Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
chilo-ms committed Nov 2, 2023
1 parent fe11182 commit 47c45aa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions onnxruntime/test/testdata/trt_reshape_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@ def generate_model(model_name):
nodes,
"trt_engine_wrapper",
[ # input
helper.make_tensor_value_info("data", TensorProto.FLOAT, ["N",2]),
helper.make_tensor_value_info("shape", TensorProto.INT64, [2,]),
helper.make_tensor_value_info("data", TensorProto.FLOAT, ["N", 2]),
helper.make_tensor_value_info(
"shape",
TensorProto.INT64,
[
2,
],
),
],
[ # output
helper.make_tensor_value_info("reshaped", TensorProto.FLOAT, [4, 1]),
Expand Down

0 comments on commit 47c45aa

Please sign in to comment.