Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for TF_RET_CHECK (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    absl::StatusOr<std::string> GetDenseTensorNameFromTensorInfo(
        const TensorInfo& tensor_info) {
      // TODO(b/184675681): Support other encoding cases.
      //
      // TODO(b/184679394): Add unit test for this check.
      TF_RET_CHECK(tensor_info.encoding_case() == tensorflow::TensorInfo::kName)
          << "Only dense tensor is supported, but got encoding case "
          << tensor_info.encoding_case();
      return tensor_info.name();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top