Home
last modified time | relevance | path

Searched refs:input_c (Results 1 – 25 of 31) sorted by relevance

12

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_CudnnRNNBackprop.pbtxt20 input_c: For LSTM, a 3-D tensor with the shape of
29 output_c: The same shape as input_c for LSTM. An empty tensor for other models.
40 input_c_backprop: The backprop to input_c in the forward pass. Has the same
41 shape as input_c.
Dapi_def_CudnnRNNBackpropV2.pbtxt23 input_c: For LSTM, a 3-D tensor with the shape of
32 output_c: The same shape as input_c for LSTM. An empty tensor for other models.
44 input_c_backprop: The backprop to input_c in the forward pass. Has the same
45 shape as input_c.
Dapi_def_CudnnRNNBackpropV3.pbtxt25 input_c: For LSTM, a 3-D tensor with the shape of
36 output_c: The same shape as input_c for LSTM. An empty tensor for other models.
49 input_c_backprop: The backprop to input_c in the forward pass. Has the same
50 shape as input_c.
Dapi_def_CudnnRNN.pbtxt21 input_c: For LSTM, a 3-D tensor with the shape of
30 output_c: The same shape as input_c for LSTM. An empty tensor for other models.
Dapi_def_CudnnRNNV2.pbtxt22 input_c: For LSTM, a 3-D tensor with the shape of
31 output_c: The same shape as input_c for LSTM. An empty tensor for other models.
Dapi_def_CudnnRNNV3.pbtxt25 input_c: For LSTM, a 3-D tensor with the shape of
36 output_c: The same shape as input_c for LSTM. An empty tensor for other models.
/external/tensorflow/tensorflow/python/ops/
Dcudnn_rnn_grad.py33 input_c=op.inputs[2],
58 input_c=op.inputs[2],
86 input_c=op.inputs[2],
/external/tensorflow/tensorflow/core/kernels/
Dcudnn_rnn_ops.cc568 const Tensor** input_c, const Tensor** params, in ExtractForwardInput() argument
574 TF_RETURN_IF_ERROR(context->input("input_c", input_c)); in ExtractForwardInput()
623 model_shapes->cell_num_units = (*input_c)->dim_size(2); in ExtractForwardInput()
635 if ((*input_h)->shape() != (*input_c)->shape()) { in ExtractForwardInput()
639 (*input_c)->shape().DebugString()); in ExtractForwardInput()
642 if ((*input_h)->dim_size(2) > (*input_c)->dim_size(2) || in ExtractForwardInput()
644 (*input_h)->dim_size(0) != (*input_c)->dim_size(0) || in ExtractForwardInput()
645 (*input_h)->dim_size(1) != (*input_c)->dim_size(1)) { in ExtractForwardInput()
649 (*input_c)->shape().DebugString()); in ExtractForwardInput()
682 const Tensor** input_c, const Tensor** params, in ExtractForwardInput() argument
[all …]
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DCudnnRNNV3.pbtxt12 name: "input_c"
137 name: "input_c"
269 name: "input_c"
DCudnnRNNBackpropV3.pbtxt12 name: "input_c"
158 name: "input_c"
311 name: "input_c"
DCudnnRNN.pbtxt12 name: "input_c"
DCudnnRNNV2.pbtxt12 name: "input_c"
DCudnnRNNBackpropV2.pbtxt12 name: "input_c"
DCudnnRNNBackprop.pbtxt12 name: "input_c"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DCudnnRNNV3.pbtxt12 name: "input_c"
137 name: "input_c"
DCudnnRNNBackpropV3.pbtxt12 name: "input_c"
158 name: "input_c"
DCudnnRNN.pbtxt12 name: "input_c"
DCudnnRNNV2.pbtxt12 name: "input_c"
DCudnnRNNBackprop.pbtxt12 name: "input_c"
DCudnnRNNBackpropV2.pbtxt12 name: "input_c"
/external/libaom/libaom/test/
Dfft_test.cc203 std::vector<std::complex<float> > input_c = fft2d(&expected[0], n); in TEST_P() local
205 input_[2 * i + 0] = input_c[i].real(); in TEST_P()
206 input_[2 * i + 1] = input_c[i].imag(); in TEST_P()
/external/tensorflow/tensorflow/python/keras/layers/
Dcudnn_recurrent.py472 input_c = initial_state[1]
474 input_c = array_ops.expand_dims(input_c, axis=0)
502 'input_c': input_c,
Drecurrent_v2.py678 input_c=0,
693 input=inputs, input_h=init_h, input_c=0, params=params,
1495 input_c=init_c,
1513 input=inputs, input_h=init_h, input_c=init_c, params=params,
/external/tensorflow/tensorflow/python/keras/engine/
Ddata_adapter_test.py185 input_c = keras.Input(shape=(1,), name='input_b')
189 z = keras.layers.Dense(1, name='dense_3')(input_c)
193 model_3 = keras.Model(inputs=input_c, outputs=z)
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dreference_ops.h894 for (int input_c = begin_input_c; input_c < end_input_c; ++input_c) { in LocalResponseNormalization() local
895 const float input_val = input_data[i * depth + input_c]; in LocalResponseNormalization()

12