- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_OperationInputType (0.08 sec)
-
tensorflow/c/c_api_test.cc
EXPECT_EQ(2, TF_OperationNumInputs(add)); EXPECT_EQ(2, TF_OperationInputListLength(add, "inputs", s)); ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s); EXPECT_EQ(TF_INT32, TF_OperationInputType(TF_Input{add, 0})); EXPECT_EQ(TF_INT32, TF_OperationInputType(TF_Input{add, 1})); TF_Output add_in_0 = TF_OperationInput(TF_Input{add, 0}); EXPECT_EQ(feed, add_in_0.oper); EXPECT_EQ(0, add_in_0.index);
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0) -
tensorflow/c/c_api.h
TF_Status* status); TF_CAPI_EXPORT extern int TF_OperationNumInputs(TF_Operation* oper); TF_CAPI_EXPORT extern TF_DataType TF_OperationInputType(TF_Input oper_in); TF_CAPI_EXPORT extern int TF_OperationInputListLength(TF_Operation* oper, const char* arg_name,
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0)