- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_DeleteStatus (1.58 sec)
-
tensorflow/c/c_op_requires.h
if (!TF_PREDICT_TRUE(_s.ok())) { \ ::tensorflow::Set_TF_Status_from_Status(C_STATUS, _s); \ TF_OpKernelContext_Failure(CTX, C_STATUS); \ TF_DeleteStatus(C_STATUS); \ return; \ } \ } while (0)
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Tue Aug 02 21:35:06 UTC 2022 - 2.3K bytes - Viewed (0) -
tensorflow/c/c_test.c
TF_DeleteStatus(s); return NULL; } // A compute function. This will never actually get called in this test, it's // just nice to know that it compiles. void compute(void* kernel, TF_OpKernelContext* ctx) { TF_Tensor* input; TF_Status* s = TF_NewStatus(); TF_GetInput(ctx, 0, &input, s); TF_DeleteTensor(input); TF_DeleteStatus(s); } // Exercises tensorflow's C API.
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Wed Apr 24 20:50:35 UTC 2024 - 2.8K bytes - Viewed (0)