Home
last modified time | relevance | path

Searched refs:oper_out (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/client/
Dtf_session_helper.cc577 TF_Output oper_out) { in TF_OperationOutputConsumers_wrapper() argument
578 int num_consumers = TF_OperationOutputNumConsumers(oper_out); in TF_OperationOutputConsumers_wrapper()
580 TF_OperationOutputConsumers(oper_out, consumers.data(), num_consumers); in TF_OperationOutputConsumers_wrapper()
Dtf_session_helper.h203 TF_Output oper_out);
/external/tensorflow/tensorflow/c/
Dc_api.h630 TF_CAPI_EXPORT extern TF_DataType TF_OperationOutputType(TF_Output oper_out);
650 TF_CAPI_EXPORT extern int TF_OperationOutputNumConsumers(TF_Output oper_out);
659 TF_CAPI_EXPORT extern int TF_OperationOutputConsumers(TF_Output oper_out,
Dc_api.cc1517 TF_DataType TF_OperationOutputType(TF_Output oper_out) { in TF_OperationOutputType() argument
1519 oper_out.oper->node.output_type(oper_out.index)); in TF_OperationOutputType()
1568 int TF_OperationOutputNumConsumers(TF_Output oper_out) { in TF_OperationOutputNumConsumers() argument
1570 for (const auto* edge : oper_out.oper->node.out_edges()) { in TF_OperationOutputNumConsumers()
1571 if (edge->src_output() == oper_out.index) { in TF_OperationOutputNumConsumers()
1578 int TF_OperationOutputConsumers(TF_Output oper_out, TF_Input* consumers, in TF_OperationOutputConsumers() argument
1581 for (const auto* edge : oper_out.oper->node.out_edges()) { in TF_OperationOutputConsumers()
1582 if (edge->src_output() == oper_out.index) { in TF_OperationOutputConsumers()