Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Dadd (0.18 sec)

  1. tensorflow/c/eager/c_api_experimental.cc

          static_cast<void*>(gauge->gauge->GetCell(label1, label2)));
    }
    
    void TFE_MonitoringSamplerCellAdd(TFE_MonitoringSamplerCell* cell,
                                      double value) {
      cell->cell.Add(value);
    }
    
    void TFE_MonitoringSamplerCellValue(TFE_MonitoringSamplerCell* cell,
                                        TF_Buffer* buf) {
      string content;
      cell->cell.value().SerializeToString(&content);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
  2. tensorflow/c/c_api_experimental.cc

      NodeDef node_def;
      tensorflow::ImmediateExecutionOperation* op = tensorflow::unwrap(tfe_op);
      node_def.set_name(op->Name());
      node_def.set_op(op->Name());
      for (int i = 0; i < num_inputs; ++i) {
        node_def.add_input("dummy_input");
      }
      OperationFromInterface(op)->Attrs().FillAttrValueMap(node_def.mutable_attr());
    
      const tensorflow::OpRegistrationData* op_reg_data;
      status->status =
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
Back to top