- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for target_opers (0.15 sec)
-
tensorflow/c/c_api.cc
int ninputs, const TF_Output* outputs, TF_Tensor** output_values, int noutputs, const TF_Operation* const* target_opers, int ntargets, TF_Buffer* run_metadata, TF_Status* status) { // TODO(josh11b,mrry): Change Session to be able to use a Graph* // directly, instead of requiring us to serialize to a GraphDef and
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
tensorflow/c/c_api.h
// Output tensors const TF_Output* outputs, TF_Tensor** output_values, int noutputs, // Target operations const TF_Operation* const* target_opers, int ntargets, // RunMetadata TF_Buffer* run_metadata, // Output status TF_Status*); // Set up the graph with the intended feeds (inputs) and fetches (outputs) for a
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
TF_Output fetches[] = {dxy_dx, dxy_dy}; TF_Tensor* fetchValues[] = {nullptr, nullptr}; TF_SessionRun(sess, nullptr /* run_options */, feeds, feedValues, 2, fetches, fetchValues, 2, nullptr /* target_opers */, 0, nullptr /* run_metadata */, s_); TF_DeleteTensor(feedValues[0]); TF_DeleteTensor(feedValues[1]); ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_); TF_DeleteSession(sess, s_);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0)