Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Baugue (0.21 sec)

  1. tensorflow/c/eager/tfe_monitoring_internal.h

      TFE_MonitoringGauge(const char* name, const char* description,
                          LabelDesc&&... label) {
        gauge = absl::WrapUnique(
            tensorflow::monitoring::Gauge<ValueType, NumLabels>::New(
                name, description, label...));
      }
    
      std::unique_ptr<tensorflow::monitoring::Gauge<ValueType, NumLabels>> gauge;
    };
    
    struct TFE_MonitoringIntGauge0 : TFE_MonitoringGauge<int64_t, 0> {
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 11 01:20:50 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental_test.cc

      EXPECT_EQ("test/gauge", metrics->point_set_map.at("test/gauge")->metric_name);
      EXPECT_EQ(1,
                metrics->point_set_map.at("test/gauge")->points.at(0)->int64_value);
    
      TFE_MonitoringIntGaugeCellSet(cell, 5);
      metrics = collection_registry->CollectMetrics(options);
      EXPECT_EQ(5,
                metrics->point_set_map.at("test/gauge")->points.at(0)->int64_value);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 03:14:26 GMT 2023
    - 31.5K bytes
    - Viewed (1)
  3. tensorflow/c/eager/c_api_experimental.h

    TFE_MonitoringGetCellIntGauge0(TFE_MonitoringIntGauge0* gauge);
    
    // APIs for Int Gauge with 1 label.
    typedef struct TFE_MonitoringIntGauge1 TFE_MonitoringIntGauge1;
    TF_CAPI_EXPORT extern TFE_MonitoringIntGauge1* TFE_MonitoringNewIntGauge1(
        const char* name, TF_Status* out_status, const char* description,
        const char* label1);
    TF_CAPI_EXPORT extern void TFE_MonitoringDeleteIntGauge1(
        TFE_MonitoringIntGauge1* gauge);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_experimental.cc

      if (!result->gauge->GetStatus().ok()) {
        delete result;
        return nullptr;
      }
      return result;
    }
    
    void TFE_MonitoringDeleteIntGauge1(TFE_MonitoringIntGauge1* gauge) {
      delete gauge;
    }
    
    TFE_MonitoringIntGaugeCell* TFE_MonitoringGetCellIntGauge1(
        TFE_MonitoringIntGauge1* gauge, const char* label1) {
      return static_cast<TFE_MonitoringIntGaugeCell*>(
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
Back to top