Home
last modified time | relevance | path

Searched refs:input_mode (Results 1 – 25 of 27) sorted by relevance

12

/external/toybox/kconfig/
Dconf.c29 } input_mode = ask_all; variable
59 if (!valid_stdin && input_mode == ask_silent) { in check_stdin()
85 switch (input_mode) { in conf_askvalue()
122 switch (input_mode) { in conf_askvalue()
348 switch (input_mode) { in conf_choice()
424 if (input_mode == ask_silent && rootEntry != menu) { in conf()
502 input_mode = ask_new; in main()
505 input_mode = ask_silent; in main()
509 input_mode = set_default; in main()
512 input_mode = set_default; in main()
[all …]
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/ops/
Dcudnn_rnn_ops.py187 input_mode=CUDNN_INPUT_LINEAR_MODE, argument
209 self._input_mode = input_mode
245 input_mode=self._input_mode,
266 input_mode=self._input_mode,
637 input_mode=CUDNN_INPUT_LINEAR_MODE, argument
690 self._input_mode = input_mode
926 def check_input_mode(input_mode): argument
927 if input_mode not in (CUDNN_INPUT_LINEAR_MODE, CUDNN_INPUT_SKIP_MODE,
930 (input_mode, CUDNN_INPUT_LINEAR_MODE,
960 input_mode=CUDNN_INPUT_LINEAR_MODE, argument
[all …]
/external/u-boot/scripts/kconfig/
Dconf.c24 enum input_mode { enum
38 static enum input_mode input_mode = oldaskconfig; variable
101 switch (input_mode) { in conf_askvalue()
294 switch (input_mode) { in conf_choice()
365 if (input_mode != oldaskconfig && rootEntry != menu) { in conf()
424 if (input_mode == listnewconfig) { in check_conf()
512 input_mode = (enum input_mode)opt; in main()
582 switch (input_mode) { in main()
620 switch (input_mode) { in main()
651 switch (input_mode) { in main()
[all …]
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/layers/
Dcudnn_rnn.py160 input_mode=CUDNN_INPUT_LINEAR_MODE, argument
201 cudnn_rnn_ops.check_input_mode(input_mode)
210 self._input_mode = input_mode
229 def input_mode(self): member in _CudnnRNN
493 input_mode=self._input_mode,
509 input_mode=self._input_mode,
532 input_mode=self.input_mode,
/external/tensorflow/tensorflow/python/ops/
Dcudnn_rnn_grad.py46 input_mode=op.get_attr("input_mode"),
72 input_mode=op.get_attr("input_mode"),
102 input_mode=op.get_attr("input_mode"),
/external/tensorflow/tensorflow/core/kernels/
Dcudnn_rnn_ops.cc272 int input_size, RnnInputMode* input_mode) { in ToRNNInputMode() argument
275 *input_mode = RnnInputMode::kRnnLinearSkip; in ToRNNInputMode()
278 *input_mode = RnnInputMode::kRnnSkipInput; in ToRNNInputMode()
281 *input_mode = (input_size == num_units) ? RnnInputMode::kRnnSkipInput in ToRNNInputMode()
956 RnnInputMode input_mode; in ExtractCudnnRNNParamsInfo() local
958 ToRNNInputMode(rnn_input_mode(), num_units, input_size, &input_mode)); in ExtractCudnnRNNParamsInfo()
965 num_layers, num_units, input_size, /*batch_size=*/0, input_mode, in ExtractCudnnRNNParamsInfo()
978 const RnnInputMode& input_mode, in CreateRnnDescriptor() argument
986 model_shapes.input_size, model_shapes.batch_size, input_mode, in CreateRnnDescriptor()
1003 const RnnInputMode& input_mode, in GetCachedRnnDescriptor() argument
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_CudnnRNNParamsSize.pbtxt12 input_mode: Indicate whether there is a linear projection between the input and
Dapi_def_CudnnRNN.pbtxt9 input_mode: Indicate whether there is a linear projection between the input and
Dapi_def_CudnnRNNCanonicalToParams.pbtxt25 input_mode: Indicate whether there is a linear projection between the input and
Dapi_def_CudnnRNNParamsToCanonical.pbtxt25 input_mode: Indicate whether there is a linear projection between the input and
Dapi_def_CudnnRNNV2.pbtxt10 input_mode: Indicates whether there is a linear projection between the input and
Dapi_def_CudnnRNNBackprop.pbtxt8 input_mode: Indicate whether there is a linear projection between the input and
Dapi_def_CudnnRNNV3.pbtxt10 input_mode: Indicates whether there is a linear projection between the input and
Dapi_def_CudnnRNNBackpropV2.pbtxt11 input_mode: Indicates whether there is a linear projection between the input and
Dapi_def_CudnnRNNBackpropV3.pbtxt10 input_mode: Indicates whether there is a linear projection between the input and
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_dnn.cc879 cudnnRNNInputMode_t ToCudnnRnnInputMode(dnn::RnnInputMode input_mode) { in ToCudnnRnnInputMode() argument
880 switch (input_mode) { in ToCudnnRnnInputMode()
883 return static_cast<cudnnRNNInputMode_t>(input_mode); in ToCudnnRnnInputMode()
885 LOG(FATAL) << "Invalid RNN input mode: " << static_cast<int>(input_mode); in ToCudnnRnnInputMode()
1006 cudnnRNNInputMode_t input_mode, in CudnnRnnDescriptor() argument
1020 input_mode_(input_mode), in CudnnRnnDescriptor()
1034 int batch_size, cudnnRNNInputMode_t input_mode, in Create() argument
1050 /*inputMode=*/input_mode, /*direction=*/direction_mode, in Create()
1102 input_mode, direction_mode, rnn_mode, data_type, in Create()
1112 cudnnRNNInputMode_t input_mode() const { return input_mode_; } in input_mode() function in stream_executor::gpu::CudnnRnnDescriptor
[all …]
Dcuda_dnn.h52 dnn::RnnInputMode input_mode, dnn::RnnDirectionMode direction_mode,
/external/tensorflow/tensorflow/stream_executor/
Dstream_executor_pimpl.cc383 dnn::RnnInputMode input_mode, dnn::RnnDirectionMode direction_mode, in createRnnDescriptor() argument
393 num_layers, hidden_size, input_size, batch_size, input_mode, in createRnnDescriptor()
Dstream_executor_pimpl.h409 dnn::RnnInputMode input_mode, dnn::RnnDirectionMode direction_mode,
Ddnn.h2043 int batch_size, dnn::RnnInputMode input_mode,
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_dnn.cc1552 miopenRNNInputMode_t ToMIOpenRnnInputMode(dnn::RnnInputMode input_mode) { in ToMIOpenRnnInputMode() argument
1553 switch (input_mode) { in ToMIOpenRnnInputMode()
1559 LOG(FATAL) << "Invalid RNN input mode: " << static_cast<int>(input_mode); in ToMIOpenRnnInputMode()
1683 miopenRNNInputMode_t input_mode, in MIOpenRnnDescriptor() argument
1692 input_mode_(input_mode), in MIOpenRnnDescriptor()
1701 num_layers /*numLayers*/, input_mode /*inputMode*/, in MIOpenRnnDescriptor()
1727 miopenRNNInputMode_t input_mode() const { return input_mode_; } in input_mode() function in stream_executor::gpu::MIOpenRnnDescriptor
2277 dnn::RnnInputMode input_mode, dnn::RnnDirectionMode direction_mode, in createRnnDescriptor() argument
2286 ToMIOpenRnnInputMode(input_mode), in createRnnDescriptor()
Drocm_dnn.h50 dnn::RnnInputMode input_mode, dnn::RnnDirectionMode direction_mode,
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.raw_ops.pbtxt733 …argspec: "args=[\'input\', \'input_h\', \'input_c\', \'params\', \'rnn_mode\', \'input_mode\', \'d…
737 …_backprop\', \'output_c_backprop\', \'reserve_space\', \'rnn_mode\', \'input_mode\', \'direction\'…
741 …ut_c_backprop\', \'reserve_space\', \'host_reserved\', \'rnn_mode\', \'input_mode\', \'direction\'…
745 …ut_c_backprop\', \'reserve_space\', \'host_reserved\', \'rnn_mode\', \'input_mode\', \'direction\'…
749 …'num_units\', \'input_size\', \'weights\', \'biases\', \'rnn_mode\', \'input_mode\', \'direction\'…
753 …layers\', \'num_units\', \'input_size\', \'T\', \'S\', \'rnn_mode\', \'input_mode\', \'direction\'…
757 …m_units\', \'input_size\', \'params\', \'num_params\', \'rnn_mode\', \'input_mode\', \'direction\'…
761 …argspec: "args=[\'input\', \'input_h\', \'input_c\', \'params\', \'rnn_mode\', \'input_mode\', \'d…
765 …ut_h\', \'input_c\', \'params\', \'sequence_lengths\', \'rnn_mode\', \'input_mode\', \'direction\'…
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.raw_ops.pbtxt733 …argspec: "args=[\'input\', \'input_h\', \'input_c\', \'params\', \'rnn_mode\', \'input_mode\', \'d…
737 …_backprop\', \'output_c_backprop\', \'reserve_space\', \'rnn_mode\', \'input_mode\', \'direction\'…
741 …ut_c_backprop\', \'reserve_space\', \'host_reserved\', \'rnn_mode\', \'input_mode\', \'direction\'…
745 …ut_c_backprop\', \'reserve_space\', \'host_reserved\', \'rnn_mode\', \'input_mode\', \'direction\'…
749 …'num_units\', \'input_size\', \'weights\', \'biases\', \'rnn_mode\', \'input_mode\', \'direction\'…
753 …layers\', \'num_units\', \'input_size\', \'T\', \'S\', \'rnn_mode\', \'input_mode\', \'direction\'…
757 …m_units\', \'input_size\', \'params\', \'num_params\', \'rnn_mode\', \'input_mode\', \'direction\'…
761 …argspec: "args=[\'input\', \'input_h\', \'input_c\', \'params\', \'rnn_mode\', \'input_mode\', \'d…
765 …ut_h\', \'input_c\', \'params\', \'sequence_lengths\', \'rnn_mode\', \'input_mode\', \'direction\'…
/external/tensorflow/tensorflow/core/ops/
Dops.pbtxt7283 name: "input_mode"
7428 name: "input_mode"
7570 name: "input_mode"
7716 name: "input_mode"
7833 name: "input_mode"
7936 name: "input_mode"
8045 name: "input_mode"
8158 name: "input_mode"
8283 name: "input_mode"

12