Skip to content

Commit

Permalink
Fix legalize-tf.mlir - capitalization issue
Browse files Browse the repository at this point in the history
  • Loading branch information
David Rubinstein committed Apr 26, 2024
1 parent dabc819 commit ee54ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -2328,7 +2328,7 @@ func.func @conv3d_invalid_strides(%arg0: tensor<?x?x?x?x?xf32>,%arg1: tensor<?x
}

func.func @complex(%arg0: tensor<1xf64>,%arg1: tensor<1xf64>) -> tensor<1xcomplex<f64>> {
%0 = "tf.complex"(%arg0, %arg1) : (tensor<1xf64>, tensor<1xf64>) -> tensor<1xcomplex<f64>>
%0 = "tf.Complex"(%arg0, %arg1) : (tensor<1xf64>, tensor<1xf64>) -> tensor<1xcomplex<f64>>
func.return %0: tensor<1xcomplex<f64>>

// CHECK-LABEL: complex
Expand Down

0 comments on commit ee54ffd

Please sign in to comment.