/external/tensorflow/tensorflow/core/distributed_runtime/eager/ |
D | remote_tensor_handle.h | 27 : op_id(tensor_handle.op_id()), output_num(tensor_handle.output_num()) {} in RemoteTensorHandleInternal() 28 RemoteTensorHandleInternal(int64 op_id, int32 output_num) in RemoteTensorHandleInternal() 29 : op_id(op_id), output_num(output_num) {} in RemoteTensorHandleInternal() 30 int64 op_id; member 36 return FingerprintCat64(handle.op_id, handle.output_num); in operator() 43 return first.op_id == second.op_id && first.output_num == second.output_num; in operator()
|
D | eager_service_impl.h | 140 remote_handle.op_id, ", Output num: ", remote_handle.output_num); in GetTensorHandle() 154 remote_handle.op_id, ", Output num: ", remote_handle.output_num); in DeleteTensorHandle()
|
/external/tensorflow/tensorflow/c/eager/ |
D | tape.h | 221 const int64 op_id = next_op_id_++; in RecordOperation() local 227 tensor_tape_[o.GetID()] = op_id; in RecordOperation() 231 op_tape_[op_id] = OpTapeEntry<BackwardFunction, TapeTensor>{ in RecordOperation() 252 const int64 op_id = tensor_op_it->second; in DeleteTrace() local 253 if (op_id == -1) { in DeleteTrace() 258 auto op_it = op_tape_.find(op_id); in DeleteTrace() 340 int64 op_id = op_id_it->second; in PrepareBackprop() local 341 auto op_it = op_tape->find(op_id); in PrepareBackprop() 342 auto result_op_it = result.op_tape.find(op_id); in PrepareBackprop() 343 if (op_id == -1 || op_it == op_tape->end() || in PrepareBackprop() [all …]
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tensor_tracer.py | 612 for op_id, op in enumerate(op_list): 615 opname_idx_map[op.name] = op_id 998 def _skip_op(self, op_id, op, user_included, user_excluded, argument 1004 op_id, _REASON_WHILELOOP_OP) 1008 op_id, _REASON_UNSAFE_OP) 1012 op_id, _REASON_DEVICE_MISMATCH) 1016 op_id, _REASON_NOT_EXECUTED) 1019 if not self._inside_op_range(op_id): 1021 op_id, _REASON_OUTSIDE_OP_RANGE) 1025 op_id, _REASON_LESS_INTERESTING_OP) [all …]
|
/external/grpc-grpc/src/core/ext/transport/cronet/transport/ |
D | cronet_transport.cc | 807 enum e_op_id op_id) { in op_can_be_run() argument 817 if (op_id == OP_SEND_INITIAL_METADATA) { in op_can_be_run() 821 if (op_id == OP_SEND_MESSAGE) { in op_can_be_run() 825 if (op_id == OP_SEND_TRAILING_METADATA) { in op_can_be_run() 829 if (op_id == OP_CANCEL_ERROR) { in op_can_be_run() 834 if (op_id == OP_RECV_INITIAL_METADATA && in op_can_be_run() 839 if (op_id == OP_RECV_MESSAGE && op_state->state_op_done[OP_RECV_MESSAGE]) { in op_can_be_run() 843 if (op_id == OP_RECV_TRAILING_METADATA && in op_can_be_run() 853 if (op_id == OP_ON_COMPLETE && in op_can_be_run() 861 } else if (op_id == OP_SEND_INITIAL_METADATA) { in op_can_be_run() [all …]
|
/external/tensorflow/tensorflow/core/common_runtime/eager/ |
D | tensor_handle.cc | 81 TensorHandle::TensorHandle(int64 op_id, int32 output_num, in TensorHandle() argument 91 remote_op_id_(op_id), in TensorHandle() 97 DCHECK(IsRemote()) << "Op ID and output num should be >= 0. Op ID: " << op_id in TensorHandle() 232 Status TensorHandle::RemoteAddress(int64* op_id, int32* output_num) { in RemoteAddress() argument 237 *op_id = remote_op_id_; in RemoteAddress()
|
D | tensor_handle.h | 66 TensorHandle(int64 op_id, int32 output_num, uint64 remote_shape_node_id, 99 Status RemoteAddress(int64* op_id, int32* output_num);
|
D | execute.cc | 530 uint64 op_id, int output_num) { in GetRemoteTensorDestructor() argument 531 return [ctx, eager_client, context_id, op_id, output_num]() { in GetRemoteTensorDestructor() 543 handle_to_decref->set_op_id(op_id); in GetRemoteTensorDestructor() 612 const tensorflow::uint64 id = request.op_id(); in EagerRemoteSendTensor() 682 tensorflow::int64 op_id; in EagerRemoteExecute() 684 TF_RETURN_IF_ERROR(input->RemoteAddress(&op_id, &output_num)); in EagerRemoteExecute() 687 remote_op_input->set_op_id(op_id); in EagerRemoteExecute()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | ccp_pass.cpp | 150 if (!instr->WhileEachInId([this](uint32_t* op_id) { in VisitAssignment() argument 151 auto iter = values_.find(*op_id); in VisitAssignment() 160 if (!instr->WhileEachInId([this](uint32_t* op_id) { in VisitAssignment() argument 161 auto it = values_.find(*op_id); in VisitAssignment()
|
D | folding_rules.cpp | 637 uint32_t op_id = inst->GetSingleWordInOperand(i); in MergeMulDivArithmetic() local 638 Instruction* op_inst = def_use_mgr->GetDef(op_id); in MergeMulDivArithmetic() 821 uint32_t op_id = inst->GetSingleWordInOperand(0); in MergeDivMulArithmetic() local 822 Instruction* op_inst = def_use_mgr->GetDef(op_id); in MergeDivMulArithmetic() 1614 uint32_t op_id = inst->GetSingleWordInOperand(i); in RedundantPhi() local 1615 if (op_id == inst->result_id()) { in RedundantPhi() 1620 incoming_value = op_id; in RedundantPhi() 1621 } else if (op_id != incoming_value) { in RedundantPhi()
|
D | fold.cpp | 614 &id_map](uint32_t* op_id) { in FoldInstructionToConstant() argument 615 uint32_t id = id_map(*op_id); in FoldInstructionToConstant()
|
D | instruction.cpp | 478 ForEachInOperand([&is_opaque, this](const uint32_t* op_id) { in IsOpaqueType() argument 479 Instruction* type_inst = context()->get_def_use_mgr()->GetDef(*op_id); in IsOpaqueType()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | ccp_pass.cpp | 150 if (!instr->WhileEachInId([this](uint32_t* op_id) { in VisitAssignment() argument 151 auto iter = values_.find(*op_id); in VisitAssignment() 160 if (!instr->WhileEachInId([this](uint32_t* op_id) { in VisitAssignment() argument 161 auto it = values_.find(*op_id); in VisitAssignment()
|
D | folding_rules.cpp | 637 uint32_t op_id = inst->GetSingleWordInOperand(i); in MergeMulDivArithmetic() local 638 Instruction* op_inst = def_use_mgr->GetDef(op_id); in MergeMulDivArithmetic() 821 uint32_t op_id = inst->GetSingleWordInOperand(0); in MergeDivMulArithmetic() local 822 Instruction* op_inst = def_use_mgr->GetDef(op_id); in MergeDivMulArithmetic() 1614 uint32_t op_id = inst->GetSingleWordInOperand(i); in RedundantPhi() local 1615 if (op_id == inst->result_id()) { in RedundantPhi() 1620 incoming_value = op_id; in RedundantPhi() 1621 } else if (op_id != incoming_value) { in RedundantPhi()
|
D | fold.cpp | 633 &id_map](uint32_t* op_id) { in FoldInstructionToConstant() argument 634 uint32_t id = id_map(*op_id); in FoldInstructionToConstant()
|
/external/tensorflow/tensorflow/contrib/hvx/hvx_ops_support_checker/ |
D | hvx_ops_support_checker_main.cc | 130 const int op_id = ops_definition.GetOpIdFor(node.op(), {}); in CheckOpsSupport() local 131 if (op_id == IRemoteFusedGraphOpsDefinitions::INVALID_OP_ID) { in CheckOpsSupport()
|
/external/tensorflow/tensorflow/core/protobuf/ |
D | eager_service.proto | 15 int64 op_id = 1; field 101 repeated int64 op_id = 2; field 138 int64 op_id = 2; field 140 // uniquely identify (along with the above op_id) the particular tensor.
|
/external/tensorflow/tensorflow/lite/toco/ |
D | dump_graphviz.cc | 520 string op_id = GetOpId(op_index); in DumpOperator() local 521 AppendF(output_file, kOpNodeFmt, op_id, label, color.AsHexString(), in DumpOperator() 528 string op_id = GetOpId(op_index); in DumpOperatorEdges() local 550 AppendF(output_file, kInputEdgeFmt, input, compass_pt, op_id, i, line_width, in DumpOperatorEdges() 567 AppendF(output_file, kOutputEdgeFmt, op_id, i, output, compass_pt, in DumpOperatorEdges()
|
/external/autotest/client/cros/cellular/pseudomodem/ |
D | sim.py | 258 op_id = '' 262 op_id = self._carrier.operator_id 267 'OperatorIdentifier' : op_id,
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | ffsb_op.h | 50 unsigned int op_id; member
|
/external/tensorflow/tensorflow/core/kernels/hexagon/ |
D | soc_interface.h | 93 bool soc_interface_AppendNode(const char* const name, int node_id, int op_id,
|
D | hexagon_control_wrapper.cc | 272 const int op_id = params.soc_op_id(); in SetupGraph() local 299 op_id, padding_id, input_ptr, input_count, in SetupGraph()
|
/external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_soc_interface/include/ |
D | soc_interface.h | 94 bool soc_interface_AppendNode(const char* const name, int node_id, int op_id,
|
/external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_impl/include/ |
D | hexagon_controller.h | 129 int node_id, int op_id, int padding_id,
|
/external/tensorflow/tensorflow/contrib/graph_editor/ |
D | subgraph.py | 525 def op(self, op_id): argument 527 return self._ops[op_id]
|