- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_OperationGetAttrNameLength (0.11 sec)
-
tensorflow/c/c_api.h
// Get the length of the name of the ith attribute, or -1 if there is not an // ith attribute. TF_CAPI_EXPORT extern int TF_OperationGetAttrNameLength(TF_Operation* oper, int i); // Get the name of the ith attribute. output should have the size of // TF_OperationGetAttrNameLength(oper, i). TF_CAPI_EXPORT extern void TF_OperationGetAttrName(TF_Operation* oper, int i,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_); EXPECT_TF_META("v", -1, TF_ATTR_STRING, 5); ASSERT_EQ(1, TF_OperationGetNumAttrs(oper)); ASSERT_EQ(1, TF_OperationGetAttrNameLength(oper, 0)); std::unique_ptr<char[]> value(new char[1]); TF_OperationGetAttrName(oper, 0, value.get(), s_); EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0)