Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ShortDebugString (0.4 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        std::string new_shape_string = value.list().shape(0).ShortDebugString();
        if (actual_shape.ShortDebugString() != new_shape_string) {
          return errors::InvalidArgument("Expected ", new_shape_string, " '", name,
                                         "' attribute but found ",
                                         actual_shape.ShortDebugString());
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

              state_->types.push_back(type);
            }
          } else {
            return InvalidArgument("Missing type or type_attr field in ",
                                   output_arg.ShortDebugString());
          }
        } else if (!output_arg.type_attr().empty()) {
          Attribute attr = attrs_[output_arg.type_attr()];
          if (!attr)
            return InvalidArgument("Missing attribute '", output_arg.type_attr(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top