Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
turneram committed May 30, 2024
1 parent e1ee773 commit 116813e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/onnx/gen_onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@


def onnx_test(external_data=False):

def create_onnx_test(op_test):

def run_test():
op_info = op_test()
if len(op_info) > 3:
Expand Down Expand Up @@ -10029,7 +10031,8 @@ def simplified_layer_normalization_invalid_input_test():
def simplified_layer_normalization_invalid_n_args_test():
x = helper.make_tensor_value_info('x', TensorProto.FLOAT16, [2, 2, 4])
scale = helper.make_tensor_value_info('scale', TensorProto.FLOAT16, [4])
bias = helper.make_tensor_value_info('bias', TensorProto.FLOAT16, [1, 2, 4])
bias = helper.make_tensor_value_info('bias', TensorProto.FLOAT16,
[1, 2, 4])
y = helper.make_tensor_value_info('y', TensorProto.FLOAT16, [2, 2, 4])

node = onnx.helper.make_node(
Expand Down

0 comments on commit 116813e

Please sign in to comment.