You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the C API calls that are interfaced in tensorflow.cc will be wrapped by classdefs eventually. So in order to compare the status code you just need to compare the output of tensorflow ('TF_GetCode', uint64_ptr_to_status)
In real tensorflow C code, developers need to judge states, here is an example:
if (TF_GetCode(status) != TF_OK) { foo(); }
This C API interface project needs status such as TF_OK.
The text was updated successfully, but these errors were encountered: