Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 629288315
  • Loading branch information
tensorflower-gardener committed Apr 30, 2024
1 parent f589ef0 commit ad8ba7c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion tensorflow/compiler/mlir/tfrt/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ cc_library(
"translate/import_model.h",
],
visibility = [
# copybara:uncomment "//learning/brain/experimental/tfrt/visualization:__pkg__",
"//tensorflow/compiler/mlir/tfrt/tests/saved_model:__pkg__",
"//tensorflow/compiler/mlir/tfrt/transforms/mlrt:__pkg__",
"//tensorflow/core/tfrt/graph_executor:__pkg__",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class MultiplexSparseOp : public OpKernel {
indices_tensor.shape().DebugString(),
" values: ", values_tensor.shape().DebugString());
}
return OkStatus();
return absl::OkStatus();
}
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ REGISTER_OP("Examples>MultiplexSparse")
c->set_output(0, c->Matrix(num_rows, dense_rank));
c->set_output(1, c->Vector(num_rows));
c->set_output(2, c->Vector(dense_rank));
return ::tensorflow::OkStatus();
return absl::OkStatus();
})
.Doc(R"doc(
Return elements chosen from `a` or `b` depending on `cond`.
Expand Down

0 comments on commit ad8ba7c

Please sign in to comment.