Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LIST_SIZE (0.05 sec)

  1. tensorflow/c/c_api_test.cc

      EXPECT_TF_META("v", list_size, TF_ATTR_SHAPE, total_ndims);
      int64_t* values[list_size];
      int values_ndims[list_size];
      int64_t storage[total_ndims];
      TF_OperationGetAttrShapeList(oper, "v", values, values_ndims, list_size,
                                   storage, total_ndims, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      for (size_t i = 0; i < list_size; ++i) {
        EXPECT_EQ(ndims[i], values_ndims[i]) << i;
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Dec 27 12:18:10 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    typedef struct TF_AttrMetadata {
      // A boolean: 1 if the attribute value is a list, 0 otherwise.
      unsigned char is_list;
    
      // Length of the list if is_list is true. Undefined otherwise.
      int64_t list_size;
    
      // Type of elements of the list if is_list != 0.
      // Type of the single value stored in the attribute if is_list == 0.
      TF_AttrType type;
    
      // Total size the attribute value.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top