Home
last modified time | relevance | path

Searched refs:TFE_DeleteOp (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/c/
Dc_api_experimental_test.cc118 TFE_DeleteOp(matmul_op); in TEST()
199 TFE_DeleteOp(send_op); in TEST()
200 TFE_DeleteOp(recv_op); in TEST()
314 TFE_DeleteOp(matmul_op); in TEST_F()
333 TFE_DeleteOp(reshape_op); in TEST_F()
349 TFE_DeleteOp(fill_op); in TEST_F()
Dc_api_experimental.cc351 std::unique_ptr<TFE_Op, decltype(&TFE_DeleteOp)> queueOp( in createTFEQueue()
352 TFE_NewOp(ctx, "FIFOQueueV2", status), TFE_DeleteOp); in createTFEQueue()
384 std::unique_ptr<TFE_Op, decltype(&TFE_DeleteOp)> op_deleter(op, TFE_DeleteOp); in createTFEEnqueue()
406 std::unique_ptr<TFE_Op, decltype(&TFE_DeleteOp)> op_deleter(op, TFE_DeleteOp); in createTFEDequeue()
/external/tensorflow/tensorflow/c/eager/
Dc_api_test.cc51 TFE_DeleteOp(matmul); in BM_InitOp()
87 TFE_DeleteOp(matmul); in BM_Execute()
122 TFE_DeleteOp(identity); in BM_Execute_Identity()
394 TFE_DeleteOp(matmul); in TensorHandleSilentCopy()
442 TFE_DeleteOp(matmul); in TensorHandleSilentCopyLocal()
484 TFE_DeleteOp(matmul); in SetAndGetOpDevices()
580 TFE_DeleteOp(shape_op); in TEST()
608 TFE_DeleteOp(matmul); in Execute_MatMul_CPU()
650 TFE_DeleteOp(matmul); in Execute_MatMul_CPU_Runtime_Error()
687 TFE_DeleteOp(matmul2); in Execute_MatMul_CPU_Runtime_Error()
[all …]
Dc_api_remote_test.cc113 TFE_DeleteOp(matmul); in TestRemoteExecute()
201 TFE_DeleteOp(matmul); in TestRemoteExecuteSilentCopies()
276 TFE_DeleteOp(matmul); in TestRemoteExecuteDeleteContextWithOutstandingRPC()
334 TFE_DeleteOp(matmul); in CheckRemoteMatMulExecutesOK()
Dc_api_experimental_test.cc65 TFE_DeleteOp(matmul); in ExecuteWithProfiling()
350 TFE_DeleteOp(op); in TEST()
429 TFE_DeleteOp(op); in TEST()
471 TFE_DeleteOp(matmul); in Executor_MatMul_CPU()
Dc_api.h252 TF_CAPI_EXPORT extern void TFE_DeleteOp(TFE_Op* op);
Dc_api.cc1218 void TFE_DeleteOp(TFE_Op* op) { delete op; } in TFE_DeleteOp() function
1278 TFE_DeleteOp(op); in TFE_OpNameGetAttrType()
/external/tensorflow/tensorflow/java/src/main/native/
Deager_operation_jni.cc53 TFE_DeleteOp(reinterpret_cast<TFE_Op*>(handle)); in Java_org_tensorflow_EagerOperation_delete()
Deager_operation_builder_jni.cc88 TFE_DeleteOp(reinterpret_cast<TFE_Op*>(op_handle)); in Java_org_tensorflow_EagerOperationBuilder_delete()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
Deval_util.cc111 auto clean_op = MakeCleanup([op] { TFE_DeleteOp(op); }); in EvaluateOperation()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc208 TFE_DeleteOp(op); \ in EagerCast()
228 TFE_DeleteOp(op); in EagerCast()
Dpywrap_tfe_src.cc3232 auto cleaner = tensorflow::gtl::MakeCleanup([op] { TFE_DeleteOp(op); });