Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 625257877
  • Loading branch information
tensorflower-gardener committed Apr 16, 2024
1 parent 1ffd3ee commit 6aa0e00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tensorflow/compiler/tests/randomized_tests.cc
Expand Up @@ -281,7 +281,7 @@ Status OpTestBuilder::BuildGraph(const string& name_prefix,
*test_node_def = test_def;
}

return OkStatus();
return absl::OkStatus();
}

// Test fixture. The fixture manages the random number generator and its seed,
Expand Down Expand Up @@ -1386,7 +1386,7 @@ Status TensorsAreCloseImpl(const Tensor& x, const Tensor& y, double atol,
" rtol = ", rtol, " tol = ", atol + rtol * Abs(Tx(i))));
}
}
return OkStatus();
return absl::OkStatus();
}

template <typename T>
Expand All @@ -1400,7 +1400,7 @@ Status TensorsAreEqualImpl(const Tensor& x, const Tensor& y) {
Str(Ty(i)), ". x = ", x.DebugString(), "y = ", y.DebugString()));
}
}
return OkStatus();
return absl::OkStatus();
}

Status TensorsAreEqualImplBfloat16(const Tensor& x, const Tensor& y) {
Expand All @@ -1414,7 +1414,7 @@ Status TensorsAreEqualImplBfloat16(const Tensor& x, const Tensor& y) {
"y = ", y.DebugString()));
}
}
return OkStatus();
return absl::OkStatus();
}

// Tests if "x" and "y" are tensors of the same type, same shape, and with
Expand Down

0 comments on commit 6aa0e00

Please sign in to comment.