Fix missing status check.
PiperOrigin-RevId: 322479633 Change-Id: I6452af8b6f106d6681307caab1c9b41e514d4694
This commit is contained in:
parent
d8bbfa5d53
commit
2df63a4fa1
@ -1,4 +1,5 @@
|
||||
#include "third_party/tensorflow/stream_executor/tpu/tpu_executor_c_api.h"
|
||||
|
||||
namespace {
|
||||
|
||||
tensorflow::Status SetTpuConfigStructFns(void* library_handle) {
|
||||
|
@ -90,6 +90,9 @@ Status TpuPaddedShapeFn(const Tensor& tensor, xla::Shape* shape) {
|
||||
ApiConverter::StackHelper<XLA_Shape> tpu_shape;
|
||||
tpu::ExecutorApiFn()->XlaShapeToTpuPaddedShapeFn(
|
||||
&se_shape.value, &tpu_shape.value, status.c_status);
|
||||
if (!status.ok()) {
|
||||
return status.status();
|
||||
}
|
||||
*shape = tpu_shape.AsCpp<xla::Shape>();
|
||||
return Status::OK();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user