1 /* Copyright 2020 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14 ==============================================================================*/ 15 16 #include "tensorflow/c/eager/abstract_tensor_handle.h" 17 18 namespace tensorflow { 19 DebugString() const20std::string AbstractTensorHandle::DebugString() const { 21 PartialTensorShape shape; 22 Status s = Shape(&shape); 23 std::string shape_string; 24 if (!s.ok()) { 25 shape_string = "<error computing shape>"; 26 } else { 27 shape_string = shape.DebugString(); 28 } 29 return absl::StrCat("TensorHandle(shape=", shape_string, 30 ", dtype=", DataType_Name(DataType()), ")"); 31 } 32 TensorHandleStatus() const33Status AbstractTensorHandle::TensorHandleStatus() const { 34 // Tensor handles in current runtime don't carry error info and this method 35 // should always return OK status. 36 return OkStatus(); 37 } 38 39 } // namespace tensorflow 40