Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for TF_OperationGetNumAttrs (0.1 seconds)

  1. tensorflow/c/c_api.cc

      const auto* attr = GetAttrValue(oper, attr_name, status);
      if (!status->status.ok()) return;
      status->status = MessageToBuffer(*attr, output_attr_value);
    }
    
    int TF_OperationGetNumAttrs(TF_Operation* oper) {
      return oper->node.attrs().size();
    }
    
    int TF_OperationGetAttrNameLength(TF_Operation* oper, int i) {
      auto attrs = oper->node.attrs();
      int count = 0;
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
Back to Top