- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isExist (0.03 sec)
-
tensorflow/c/c_api.h
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. // The units of total_size depend on is_list and type.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
EXPECT_EQ("Operation 'add' has no attr named '_class'.", string(TF_Message(s_))); return; } EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_); EXPECT_EQ(1, m.is_list); EXPECT_EQ(expected.size(), m.list_size); EXPECT_EQ(TF_ATTR_STRING, m.type); std::vector<void*> values(expected.size()); std::vector<size_t> lens(expected.size());
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0)