Home
last modified time | relevance | path

Searched refs:current_input (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/tools/graph_transforms/
Dstrip_unused_nodes.cc140 for (const string& current_input : current_inputs) { in StripUnusedNodes() local
141 required_nodes.insert(current_input); in StripUnusedNodes()
142 if (input_nodes.count(current_input)) { in StripUnusedNodes()
145 if (!node_lookup.count(current_input)) { in StripUnusedNodes()
146 return errors::InvalidArgument("Input node ", current_input, in StripUnusedNodes()
149 const NodeDef* current_node = node_lookup[current_input]; in StripUnusedNodes()
/external/tensorflow/tensorflow/lite/experimental/micro/kernels/portable_optimized/
Ddepthwise_conv.cc199 const uint8* current_input = in DepthwiseConvOptimizedForFilterWidthEight() local
206 *reinterpret_cast<const uint32_t*>(current_input); in DepthwiseConvOptimizedForFilterWidthEight()
207 current_input += 4; in DepthwiseConvOptimizedForFilterWidthEight()
225 *reinterpret_cast<const uint32_t*>(current_input); in DepthwiseConvOptimizedForFilterWidthEight()
246 int32 input_val = *current_input; in DepthwiseConvOptimizedForFilterWidthEight()
247 current_input += input_depth; in DepthwiseConvOptimizedForFilterWidthEight()
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dgroup_bidirectional_sequence_ops.cc463 string current_input = first_fw_sequence_input->outputs[0]; in GroupDynamicSequenceOps() local
465 operator_type, current_input, bidirectional_sequence_ops, &op_it, model); in GroupDynamicSequenceOps()
539 string current_input = first_fw_lstm_input->outputs[0]; in Run() local
541 OperatorType::kBidirectionalSequenceLstm, current_input, in Run()
616 string current_input = first_fw_rnn_input->outputs[0]; in Run() local
618 OperatorType::kBidirectionalSequenceRnn, current_input, in Run()
/external/tensorflow/tensorflow/python/kernel_tests/
Dfunctional_ops_test.py350 def fn(_, current_input): argument
351 return current_input
361 def fn(_, current_input): argument
362 return current_input
383 def fn(_, current_input): argument
384 return current_input
/external/tensorflow/tensorflow/python/keras/
Dbackend.py3560 current_input = tuple(ta.read(time) for ta in input_ta)
3562 current_input = nest.pack_sequence_as(inputs, current_input)
3564 output, new_states = step_function(current_input,
3610 current_input = tuple(ta.read(time) for ta in input_ta)
3611 current_input = nest.pack_sequence_as(inputs, current_input)
3612 output, new_states = step_function(current_input,
5109 def range_less_than(_, current_input): argument
5112 max_num_labels_tns, current_input)
/external/tensorflow/tensorflow/python/ops/
Drnn.py1148 def body(time, elements_finished, current_input, argument
1163 (next_output, cell_state) = cell(current_input, state)
1174 nest.assert_same_structure(current_input, next_input)
/external/v8/src/compiler/
Dbytecode-graph-builder.cc3404 Node** current_input = buffer + value_input_count; in MakeNode() local
3406 *current_input++ = environment()->Context(); in MakeNode()
3412 *current_input++ = jsgraph()->Dead(); in MakeNode()
3415 *current_input++ = environment()->GetEffectDependency(); in MakeNode()
3418 *current_input++ = environment()->GetControlDependency(); in MakeNode()