HomeSort by relevance Sort by last modified time
    Searched refs:shape_or_status (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
stack_ops.cc 43 auto shape_or_status = builder->GetShape(resource->value()); local
44 if (!shape_or_status.ok()) {
45 return shape_or_status.status();
47 xla::Shape shape = *shape_or_status.ValueOrDie();
tensor_array_ops.cc 74 auto shape_or_status = builder->GetShape(resource->value()); local
75 if (!shape_or_status.ok()) {
76 return shape_or_status.status();
80 XLAShapeToTensorShape(*shape_or_status.ValueOrDie(), &shape));
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_op_kernel.cc 422 auto shape_or_status = builder()->GetShape(handle); local
423 if (!shape_or_status.ok()) {
424 return shape_or_status.status();
428 XLAShapeToTensorShape(*shape_or_status.ValueOrDie(), &shape));
  /external/tensorflow/tensorflow/compiler/xla/client/
computation_builder.cc 429 StatusOr<std::unique_ptr<Shape>> shape_or_status = GetShape(operand); local
430 if (!shape_or_status.ok()) {
433 std::unique_ptr<Shape> original_shape = shape_or_status.ConsumeValueOrDie();
    [all...]

Completed in 141 milliseconds