/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_GRUBlockCell.pbtxt | 9 w_ru: Weight matrix for the reset and update gate. 10 w_c: Weight matrix for the cell connection gate. 11 b_ru: Bias vector for the reset and update gate. 12 b_c: Bias vector for the cell connection gate. 15 r: Output of the reset gate. 16 u: Output of the update gate. 17 c: Output of the cell connection gate.
|
D | api_def_LSTMBlockCell.pbtxt | 31 The weight matrix for input gate peephole connection. 37 The weight matrix for forget gate peephole connection. 43 The weight matrix for output gate peephole connection. 55 The input gate. 67 The forget gate. 73 The output gate. 97 The forget gate bias.
|
D | api_def_BlockLSTMV2.pbtxt | 38 The weight matrix for input gate peephole connection. 44 The weight matrix for forget gate peephole connection. 50 The weight matrix for output gate peephole connection. 62 The input gate over the whole time sequence. 74 The forget gate over the whole time sequence. 80 The output gate over the whole time sequence. 132 Note that unlike LSTMBlockCell (and BlockLSTM) which uses ICFO gate layout, 134 all gate-related outputs should be reordered.
|
D | api_def_GRUBlockCellGrad.pbtxt | 9 w_ru: Weight matrix for the reset and update gate. 10 w_c: Weight matrix for the cell connection gate. 11 b_ru: Bias vector for the reset and update gate. 12 b_c: Bias vector for the cell connection gate. 13 r: Output of the reset gate. 14 u: Output of the update gate. 15 c: Output of the cell connection gate.
|
D | api_def_BlockLSTM.pbtxt | 38 The weight matrix for input gate peephole connection. 44 The weight matrix for forget gate peephole connection. 50 The weight matrix for output gate peephole connection. 62 The input gate over the whole time sequence. 74 The forget gate over the whole time sequence. 80 The output gate over the whole time sequence. 104 The forget gate bias.
|
D | api_def_LSTMBlockCellGrad.pbtxt | 31 The weight matrix for input gate peephole connection. 37 The weight matrix for forget gate peephole connection. 43 The weight matrix for output gate peephole connection. 55 The input gate. 67 The forget gate. 73 The output gate.
|
D | api_def_BlockLSTMGradV2.pbtxt | 38 The weight matrix for input gate peephole connection. 44 The weight matrix for forget gate peephole connection. 50 The weight matrix for output gate peephole connection. 62 The input gate over the whole time sequence. 74 The forget gate over the whole time sequence. 80 The output gate over the whole time sequence.
|
D | api_def_BlockLSTMGrad.pbtxt | 38 The weight matrix for input gate peephole connection. 44 The weight matrix for forget gate peephole connection. 50 The weight matrix for output gate peephole connection. 62 The input gate over the whole time sequence. 74 The forget gate over the whole time sequence. 80 The output gate over the whole time sequence.
|
/external/rust/crates/pin-project/tests/ui/unstable-features/ |
D | trivial_bounds-feature-gate.stderr | 2 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:8:28 12 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:16:28 19 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:12:13 27 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:34:28 34 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:30:12 42 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:42:28 49 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:30:12 54 --> tests/ui/unstable-features/trivial_bounds-feature-gate.rs:38:13
|
D | marker_trait_attr-feature-gate.stderr | 2 --> tests/ui/unstable-features/marker_trait_attr-feature-gate.rs:7:1
|
D | overlapping_marker_traits-feature-gate.stderr | 2 --> tests/ui/unstable-features/overlapping_marker_traits-feature-gate.rs:7:1
|
/external/google-breakpad/docs/ |
D | linux_system_calls.md | 4 called linux-gate.so that is mapped by the kernel into every process. For more 7 http://www.trilithium.com/johan/2005/08/linux-gate/ 9 In a nutshell, the problem is that the system call gate function, 14 symbol files for linux-gate.so for both Intel & AMD(the implementation of 24 The particular details of understanding the linux-gate.so symbol files can be 33 MODULE Linux x86 random\_debug\_id linux-gate.so PUBLIC 400 0 kernel\_vsyscall 37 the beginning of linux-gate.so. The STACK line indicates the size of the 47 beginning of linux-gate.so, which would cause these symbol files to be invalid.
|
/external/tensorflow/tensorflow/lite/tools/optimize/calibration/builtin_logging_ops/ |
D | lstm.cc | 48 const TfLiteFusedActivation activation, float* gate, in CalculateLstmGateFloat() argument 58 std::fill_n(gate, n_cell * n_batch, 0.0f); in CalculateLstmGateFloat() 60 tensor_utils::VectorBatchVectorAssign(gate_bias, n_cell, n_batch, gate); in CalculateLstmGateFloat() 66 input_to_gate_weights, n_cell, n_input, input, n_batch, gate); in CalculateLstmGateFloat() 73 aux_input, n_batch, gate); in CalculateLstmGateFloat() 77 recurrent_to_gate_weights, n_cell, n_output, output_state, n_batch, gate); in CalculateLstmGateFloat() 81 cell_to_gate_weights, n_cell, cell_state, n_batch, gate); in CalculateLstmGateFloat() 85 logger->LogTensorValue(subgraph_index, intermediate_tensor_index, gate, in CalculateLstmGateFloat() 88 tensor_utils::MeanStddevNormalization(gate, gate, n_cell, n_batch); in CalculateLstmGateFloat() 90 gate, n_batch, gate); in CalculateLstmGateFloat() [all …]
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | lstm_eval.cc | 189 const TfLiteFusedActivation activation, float* gate, in CalculateLstmGateFloat() argument 198 std::fill_n(gate, n_cell * n_batch, 0.0f); in CalculateLstmGateFloat() 200 tensor_utils::VectorBatchVectorAssign(gate_bias, n_cell, n_batch, gate); in CalculateLstmGateFloat() 204 float* accumulation_buffer = gate; in CalculateLstmGateFloat() 237 gate); in CalculateLstmGateFloat() 367 float* gate, in CalculateLstmGateHybrid() 383 std::fill_n(gate, n_cell * n_batch, 0.0f); in CalculateLstmGateHybrid() 385 tensor_utils::VectorBatchVectorAssign(gate_bias, n_cell, n_batch, gate); in CalculateLstmGateHybrid() 397 input, scales.data(), n_batch, gate); in CalculateLstmGateHybrid() 402 input_to_gate_weights_scale, input_sf, n_batch, gate, in CalculateLstmGateHybrid() [all …]
|
/external/toybox/toys/pending/ |
D | route.c | 145 char dest[INET6_ADDRSTRLEN], gate[INET6_ADDRSTRLEN], netmask[32], in display_routes() local 155 strcpy(gate, FLAG(n) ? "*" : "0.0.0.0"); in display_routes() 159 strcpy(gate, "::"); in display_routes() 177 if (FLAG(n)) inet_ntop(f, RTA_DATA(rteattr), gate, sizeof(dest)); in display_routes() 178 else get_hostname(f, RTA_DATA(rteattr), gate, sizeof(dest)); in display_routes() 217 xprintf("%-15.15s %-15.15s %-16s%-6s", dest, gate, netmask, flags); in display_routes() 223 dest_with_mask, gate, flags, priority, ref, use, if_name); in display_routes()
|
/external/rust/crates/tokio/src/runtime/tests/ |
D | loom_pool.rs | 364 let gate = Arc::new(AtomicBool::new(false)); in gated2() localVariable 369 let gate = gate.clone(); in gated2() localVariable 374 gate.store(true, SeqCst); in gated2() 379 gate.store(true, SeqCst); in gated2() 389 if gate.load(SeqCst) { in gated2()
|
/external/webrtc/modules/audio_processing/agc/legacy/ |
D | digital_agc.cc | 287 int16_t gate, gain_adj; in WebRtcAgc_ComputeDigitalGains() local 410 gate = 1000 + zeros_fast - zeros - stt->vadNearend.stdShortTerm; in WebRtcAgc_ComputeDigitalGains() 412 if (gate < 0) { in WebRtcAgc_ComputeDigitalGains() 416 gate = (int16_t)((gate + tmp32) >> 3); in WebRtcAgc_ComputeDigitalGains() 417 stt->gatePrevious = gate; in WebRtcAgc_ComputeDigitalGains() 421 if (gate > 0) { in WebRtcAgc_ComputeDigitalGains() 422 if (gate < 2500) { in WebRtcAgc_ComputeDigitalGains() 423 gain_adj = (2500 - gate) >> 5; in WebRtcAgc_ComputeDigitalGains()
|
/external/arm-trusted-firmware/drivers/st/clk/ |
D | stm32mp1_clk.c | 1031 static void __clk_enable(struct stm32mp1_clk_gate const *gate) in __clk_enable() argument 1035 VERBOSE("Enable clock %u\n", gate->index); in __clk_enable() 1037 if (gate->set_clr != 0U) { in __clk_enable() 1038 mmio_write_32(rcc_base + gate->offset, BIT(gate->bit)); in __clk_enable() 1040 mmio_setbits_32(rcc_base + gate->offset, BIT(gate->bit)); in __clk_enable() 1044 static void __clk_disable(struct stm32mp1_clk_gate const *gate) in __clk_disable() argument 1048 VERBOSE("Disable clock %u\n", gate->index); in __clk_disable() 1050 if (gate->set_clr != 0U) { in __clk_disable() 1051 mmio_write_32(rcc_base + gate->offset + RCC_MP_ENCLRR_OFFSET, in __clk_disable() 1052 BIT(gate->bit)); in __clk_disable() [all …]
|
/external/tensorflow/tensorflow/lite/g3doc/examples/convert/ |
D | rnn.md | 87 **input gate, forget gate, cell, and output gate**. 172 1. The **{input, recurrent}** to **{cell, input gate, forget gate, output 173 gate}** are extracted by slicing the transposed weight tensor. 175 1. The **{bias}** to **{cell, input gate, forget gate, output gate}** are
|
/external/webrtc/modules/audio_processing/agc2/rnn_vad/ |
D | rnn_gru.cc | 62 rtc::ArrayView<float> gate) { in ComputeUpdateResetGate() argument 68 RTC_DCHECK_GE(gate.size(), output_size); // `gate` is over-allocated. in ComputeUpdateResetGate() 75 gate[o] = ::rnnoise::SigmoidApproximated(x); in ComputeUpdateResetGate()
|
/external/google-breakpad/src/processor/testdata/ |
D | microdump.stackwalk.machine_readable-arm64.out | 12 Module|linux-gate.so||linux-gate.so|672B2CD6CF8AF6C43BD70F2AB02B3D0C0|0x7f80358000|0x7f80359fff|0
|
/external/toybox/toys/net/ |
D | netstat.c | 283 unsigned dest, gate, mask; in display_routes() local 296 while (fscanf(fp, "%63s%x%x%X%d%d%d%x%d%d%d", iface, &dest, &gate, &flags, in display_routes() 310 if (gate) { in display_routes() 311 if (inet_ntop(AF_INET, &gate, out, 16)) gateip = out; in display_routes()
|
/external/crosvm/devices/src/ |
D | pit.rs | 143 gate: BitField1, field 415 gate: bool, field 471 gate: false, in new() 495 gate: self.gate, in get_channel_state() 555 self.gate = state.gate; in set_channel_state() 666 speaker.set_gate(self.gate.into()); in read_speaker() 683 if new_gate && !self.gate { in write_speaker() 693 self.gate = new_gate; in write_speaker()
|
/external/google-breakpad/src/client/linux/data/ |
D | linux-gate-amd.sym | 1 MODULE Linux x86 B8CFDE93002D54DA1900A40AA1BD67690 linux-gate.so
|
D | linux-gate-intel.sym | 1 MODULE Linux x86 4FBDA58B5A1DF5A379E3CF19A235EA090 linux-gate.so
|