From e87c9e1b85492766cfb95c454877c7866e81af99 Mon Sep 17 00:00:00 2001 From: Lucy Fox <lucyfox@google.com> Date: Thu, 8 Oct 2020 18:19:31 -0700 Subject: [PATCH] Fix parameter name mismatch. Making clang-tidy happy. PiperOrigin-RevId: 336204904 Change-Id: Ife34458a3d2391f8cc386b0f0d938c5721ef0368 --- tensorflow/compiler/tf2xla/mlir_tf2xla.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/compiler/tf2xla/mlir_tf2xla.cc b/tensorflow/compiler/tf2xla/mlir_tf2xla.cc index 92a83436346..ac4d1f28803 100644 --- a/tensorflow/compiler/tf2xla/mlir_tf2xla.cc +++ b/tensorflow/compiler/tf2xla/mlir_tf2xla.cc @@ -161,7 +161,7 @@ Status ConvertGraphDefToXlaViaMlir( return ConvertMLIRToXlaComputation(*module, /*device_type=*/"XLA_CPU_JIT", computation, /*use_tuple_args=*/false, - /*always_return_tuple=*/true); + /*return_tuple=*/true); } } // namespace tensorflow