- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_SessionRun (0.19 sec)
-
tensorflow/c/c_api.h
bool require); // Extends `session` with any new operations added to its associated graph. // Usually this happens automatically in TF_SessionRun. After this is called, // TF_SessionRun will no longer extend the session on every call. // // We expose this here to allow fine-grained synchronization in multi-threaded
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 feeds[] = {{x, 0}, {y, 0}}; TF_Tensor* feedValues[] = {FloatTensor(X), FloatTensor(Y)}; 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]);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0)