HomeSort by relevance Sort by last modified time
    Searched refs:new_h (Results 1 - 9 of 9) 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
115 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 205 _, _, _, new_h = _gru_block_cell(
213 return new_h, new_h
rnn_cell.py     [all...]
  /external/tensorflow/tensorflow/python/ops/
rnn_cell_impl.py 448 new_h = u * state + (1 - u) * c
449 return new_h, new_h
591 new_h = multiply(self._activation(new_c), sigmoid(o))
594 new_state = LSTMStateTuple(new_c, new_h)
596 new_state = array_ops.concat([new_c, new_h], 1)
597 return new_h, new_state
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
rnn_cell_test.py 703 new_c, new_h = res[1]
706 self.assertEqual(new_h.shape[0], batch_size)
707 self.assertEqual(new_h.shape[1], num_units
    [all...]
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/python/ops/
cudnn_rnn_ops.py 175 new_h = (1-u) * candidate + u * state
176 return new_h, new_h
    [all...]
  /external/libvncserver/webclients/novnc/include/
ui.js 751 var new_h = window.innerHeight - pos.y;
753 display.viewportChange(0, 0, new_w, new_h);
    [all...]

Completed in 257 milliseconds