HomeSort by relevance Sort by last modified time
    Searched refs:new_h (Results 1 - 10 of 10) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
adjust_hsv_gpu.cu.h 75 const float new_h = h * 6.0f; local
77 const float x = chroma * (1.0f - fabsf(fmodf(new_h, 2.0f) - 1.0f));
79 const bool between_0_and_1 = new_h >= 0.0f && new_h < 1.0f;
80 const bool between_1_and_2 = new_h >= 1.0f && new_h < 2.0f;
81 const bool between_2_and_3 = new_h >= 2.0f && new_h < 3.0f;
82 const bool between_3_and_4 = new_h >= 3.0f && new_h < 4.0f
116 float new_h = hsv.h; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_libdispatch_mac.cc 514 fd_handler_t new_h = Block_copy(^(dispatch_data_t data, int error) { local
522 REAL(dispatch_read)(fd, length, q, new_h);
523 Block_release(new_h);
531 fd_handler_t new_h = Block_copy(^(dispatch_data_t data, int error) { local
539 REAL(dispatch_write)(fd, data, q, new_h);
540 Block_release(new_h);
548 dispatch_io_handler_t new_h = local
557 REAL(dispatch_io_read)(channel, offset, length, q, new_h);
558 Block_release(new_h);
567 dispatch_io_handler_t new_h local
605 cleanup_handler_t new_h = Block_copy(^(int error) { local
630 cleanup_handler_t new_h = Block_copy(^(int error) { local
655 cleanup_handler_t new_h = Block_copy(^(int error) { local
    [all...]
  /external/tensorflow/tensorflow/contrib/model_pruning/python/layers/
rnn_cells.py 163 new_h = multiply(self._activation(new_c), sigmoid(o))
166 new_state = tf_rnn.LSTMStateTuple(new_c, new_h)
168 new_state = array_ops.concat([new_c, new_h], 1)
169 return new_h, new_state
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
gru_ops.py 206 _, _, _, new_h = _gru_block_cell(
214 return new_h, new_h
rnn_cell.py     [all...]
  /external/tensorflow/tensorflow/python/keras/layers/
recurrent_v2.py 279 last_output, outputs, new_h, runtime = cudnn_gru(
287 last_output, outputs, new_h, runtime = standard_gru(
304 last_output, outputs, new_h, runtime = defun_standard_gru(
317 states = [new_h]
632 last_output, outputs, new_h, new_c, runtime = cudnn_lstm(
636 last_output, outputs, new_h, new_c, runtime = standard_lstm(
653 last_output, outputs, new_h, new_c, runtime = defun_standard_lstm(
662 states = [new_h, new_c]
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
model_pruner_test.cc 182 const NodeDef& new_h = output.node(6); local
183 EXPECT_EQ("h", new_h.name());
195 EXPECT_EQ(1, new_h.input_size());
196 EXPECT_EQ("f:1", new_h.input(0));
  /external/tensorflow/tensorflow/python/ops/
rnn_cell_impl.py 594 new_h = u * state + (1 - u) * c
595 return new_h, new_h
781 new_h = multiply(self._activation(new_c), sigmoid(o))
784 new_state = LSTMStateTuple(new_c, new_h)
786 new_state = array_ops.concat([new_c, new_h], 1)
787 return new_h, new_state
    [all...]
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/ops/
cudnn_rnn_ops.py 176 new_h = (1-u) * candidate + u * state
177 return new_h, new_h
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
rnn_cell_test.py     [all...]

Completed in 1368 milliseconds