Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for PreferCustomSummarizer (0.14 seconds)

  1. tensorflow/c/eager/immediate_execution_tensor_handle.h

      // iterating over the resulting tensor. This may still be viable if resolving
      // the handle loses information, but `SummarizeValue` would be more precise.
      virtual bool PreferCustomSummarizer() const { return false; }
    
      // Returns a string which summarizes the value of this TensorHandle, for
      // debugging. Does not include a shape or dtype.
      //
      // Included in the default implementation of DebugString.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 4.3K bytes
    - Click Count (0)
  2. tensorflow/c/eager/c_api.cc

        return s.status;
      }
      absl::Status Dim(int dim_index, int64_t* dim) const override {
        TF_Status s;
        *dim = methods_.dim(data_, dim_index, &s);
        return s.status;
      }
    
      bool PreferCustomSummarizer() const override {
        return methods_.summarize != nullptr;
      }
    
      absl::Status SummarizeValue(std::string& summary) const override {
        if (methods_.summarize == nullptr) {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Nov 07 05:55:21 GMT 2025
    - 43.9K bytes
    - Click Count (0)
Back to Top