From ccfa97995bea99a3c0bb47b7b0b8e34a757ecf39 Mon Sep 17 00:00:00 2001 From: Lingvo Maintenance Date: Sun, 3 Nov 2024 20:38:48 -0800 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 692819076 --- lingvo/tasks/car/ops/car_ops.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lingvo/tasks/car/ops/car_ops.cc b/lingvo/tasks/car/ops/car_ops.cc index dcae9f755..3564c7b52 100644 --- a/lingvo/tasks/car/ops/car_ops.cc +++ b/lingvo/tasks/car/ops/car_ops.cc @@ -26,7 +26,7 @@ REGISTER_OP("PairwiseIou3D") .SetShapeFn([](tensorflow::shape_inference::InferenceContext* c) { c->set_output( 0, c->MakeShape({c->Dim(c->input(0), 0), c->Dim(c->input(1), 0)})); - return tensorflow::Status(); + return absl::Status(); }) .Doc(R"doc( Calculate pairwise IoUs between two set of 3D bboxes. Every bbox is represented @@ -112,7 +112,7 @@ REGISTER_OP("NonMaxSuppression3D") c->set_output(0, output_shape); c->set_output(1, output_shape); c->set_output(2, output_shape); - return tensorflow::Status(); + return absl::Status(); }) .Doc(R"doc( Greedily selects the top subset of 3D (7 DOF format) bounding boxes per class. @@ -215,7 +215,7 @@ REGISTER_OP("SamplePoints") c->set_output(1, c->MakeShape({batch_size, num_centers})); c->set_output(2, c->MakeShape({batch_size, num_centers, num_neighbors})); c->set_output(3, c->MakeShape({batch_size, num_centers, num_neighbors})); - return ::tensorflow::Status(); + return absl::Status(); }) .Doc(R"doc( Sample points among 'points'.