Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for TFE_MonitoringCounterReader (0.12 seconds)

  1. tensorflow/c/eager/c_api_experimental_reader.h

    // Opaque handle to a reader.
    typedef struct TFE_MonitoringCounterReader TFE_MonitoringCounterReader;
    
    // Returns a handle to be used for reading values from streamz counter. The
    // counter can have been created with any number of labels.
    TF_CAPI_EXPORT extern TFE_MonitoringCounterReader*
    TFE_MonitoringNewCounterReader(const char* name);
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Nov 20 03:41:38 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. tensorflow/c/eager/c_api_experimental_reader.cc

    template <typename... LabelType>
    int64_t TFE_MonitoringCounterReader::Read(const LabelType&... labels) {
      return counter->Read(labels...);
    }
    
    TFE_MonitoringCounterReader* TFE_MonitoringNewCounterReader(const char* name) {
      auto* result = new TFE_MonitoringCounterReader(name);
    
      return result;
    }
    
    int64_t TFE_MonitoringReadCounter0(TFE_MonitoringCounterReader* cell_reader) {
      int64_t result = cell_reader->Read();
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Nov 20 03:41:38 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  3. tensorflow/c/eager/c_api_experimental_test.cc

    A. Unique TensorFlower <******@****.***> 1759988790 -0700
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Oct 09 05:56:18 GMT 2025
    - 31.5K bytes
    - Click Count (0)
Back to Top