Searched refs:slice_offset (Results 1 - 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/ |
H A D | dynamic_stitch_op_gpu.cu.cc | 41 const int32 slice_offset = output_index % slice_size; local 44 output[output_index] = ldg(data_ptrs[input_index] + slice_offset);
|
H A D | eigen_attention.h | 117 DSizes<Index, 3> slice_offset(0, offset_x, offset_y); 122 slice_offset[1] = 0; 133 slice_offset[2] = 0; 214 input.template chip<3>(i).slice(slice_offset, slice_extent); 217 input.template chip<3>(i).slice(slice_offset, slice_extent);
|
/external/v8/src/regexp/ |
H A D | regexp-macro-assembler.cc | 234 int slice_offset = 0; local 244 slice_offset = slice->offset(); 256 StringCharacterPosition(subject_ptr, start_offset + slice_offset);
|
/external/tensorflow/tensorflow/contrib/rnn/python/ops/ |
H A D | rnn_cell.py | 868 def _make_tf_features(self, input_feat, slice_offset=0): 873 slice_offset: (optional) Python int, default 0, the slicing offset is only 888 if slice_offset > 0: 892 [0, 0, 0, slice_offset], 895 elif slice_offset < 0: 899 [0, 0, -slice_offset, 0], 902 slice_offset = 0 921 inputs, [0, slice_offset + f * self._frequency_skip], 951 [0, start_index + slice_offset + f * self._frequency_skip],
|
/external/tensorflow/tensorflow/python/ops/ |
H A D | variable_scope.py | 606 slice_offset = [0] * shape.ndims 624 var_offset = slice_offset[:] 629 slice_offset[slice_dim] += var_shape[slice_dim]
|
/external/python/cpython2/Python/ |
H A D | compile.c | 3271 int op = 0, slice_offset = 0, stack_count = 0; local 3275 slice_offset++; 3281 slice_offset += 2; 3315 ADDOP(c, op + slice_offset);
|
/external/v8/src/ |
H A D | objects-inl.h | 3599 int slice_offset = offset; 3607 SeqOneByteString::cast(string)->GetChars() + slice_offset, 3613 SeqTwoByteString::cast(string)->GetChars() + slice_offset, 3619 ExternalOneByteString::cast(string)->GetChars() + slice_offset, 3625 ExternalTwoByteString::cast(string)->GetChars() + slice_offset, 3632 slice_offset += slicedString->offset();
|
Completed in 214 milliseconds