- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for DataType_Name (0.08 seconds)
-
tensorflow/c/eager/abstract_tensor_handle.cc
if (!s.ok()) { shape_string = "<error computing shape>"; } else { shape_string = shape.DebugString(); } return absl::StrCat("TensorHandle(shape=", shape_string, ", dtype=", DataType_Name(DataType()), ", type=", FullType().DebugString(), ")"); } absl::Status AbstractTensorHandle::TensorHandleStatus() const { // Tensor handles in current runtime don't carry error info and this method
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 1.4K bytes - Click Count (0) -
tensorflow/c/eager/immediate_execution_tensor_handle.cc
if (!s.ok()) { device_name = "<error fetching device name>"; } return absl::StrCat("TensorHandle(", value_string, ", shape=", shape_string, ", dtype=", DataType_Name(DataType()), ", device=\"", device_name, "\")"); } absl::Status ImmediateExecutionTensorHandle::SummarizeValue( std::string& summary) const { absl::Status status;
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:24:07 GMT 2024 - 2.1K bytes - Click Count (0) -
tensorflow/c/eager/dlpack.cc
case TF_DataType::TF_COMPLEX128: dtype.code = DLDataTypeCode::kDLComplex; break; default: status->status = tensorflow::errors::InvalidArgument( DataType_Name(static_cast<DataType>(data_type)), " is not supported by dlpack"); break; } return dtype; } // Gets DLPack's DLDevice from eager tensor handle.Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Mar 13 23:41:52 GMT 2025 - 13K bytes - Click Count (0)