Searched defs:xh (Results 1 - 6 of 6) sorted by relevance

/external/deqp/external/openglcts/modules/common/
H A DglcFragDepthTests.cpp253 float xh = ((float)x - (float)half + 0.5f) / (float)(referenceFrame.getWidth() - half); local
254 float rd = 1.0f - (xh + yf) * 0.5f;
/external/deqp/modules/gles2/functional/
H A Des2fDepthRangeTests.cpp248 float xh = ((float)(x - half) + 0.5f) / (float)(referenceFrame.getWidth()-half); local
249 float rd = 1.0f - (xh + yf) * 0.5f;
/external/deqp/modules/gles3/functional/
H A Des3fFragDepthTests.cpp255 float xh = ((float)(x - half) + 0.5f) / (float)(referenceFrame.getWidth()-half); local
256 float rd = 1.0f - (xh + yf) * 0.5f;
/external/tensorflow/tensorflow/contrib/rnn/kernels/
H A Dlstm_ops_gpu.cu.cc146 // Concatenate 'x' and 'h' and copy their contents into 'xh'.
148 __global__ void concat_xh(T* xh, const T* x, const T* h_prev, argument
151 // Assumes 'x', 'h', and 'xh' are of the following shape,
169 xh[gid] = x[output_row * input_size + output_col];
171 xh[gid] = h_prev[output_row * cell_size + output_col - input_size];
183 typename TTypes<T>::Matrix xh, typename TTypes<T>::Matrix i,
191 // Concatenate xh = [x, h].
200 xh.data(), x.data(), h_prev.data(), batch_size, cell_size, input_size);
202 // states1 = xh * w
203 typename TTypes<T>::ConstMatrix const_xh(xh
176 LSTMBlockCellFpropWithCUDA( OpKernelContext* ctx, const GPUDevice& d, const T forget_bias, const T cell_clip, bool use_peephole, typename TTypes<T>::ConstMatrix x, typename TTypes<T>::ConstMatrix cs_prev, typename TTypes<T>::ConstMatrix h_prev, typename TTypes<T>::ConstMatrix w, typename TTypes<T>::ConstVec wci, typename TTypes<T>::ConstVec wcf, typename TTypes<T>::ConstVec wco, typename TTypes<T>::ConstVec b, typename TTypes<T>::Matrix xh, typename TTypes<T>::Matrix i, typename TTypes<T>::Matrix cs, typename TTypes<T>::Matrix f, typename TTypes<T>::Matrix o, typename TTypes<T>::Matrix ci, typename TTypes<T>::Matrix co, typename TTypes<T>::Matrix icfo, typename TTypes<T>::Matrix h, int batch_size, int cell_size, int input_size) argument
[all...]
H A Dlstm_ops.cc52 typename TTypes<T>::Matrix xh, typename TTypes<T>::Matrix i,
57 // Concat xh = [x, h].
58 xh.slice(cell.xh_x_offsets(), cell.xh_x_extents()).device(d) = x;
59 xh.slice(cell.xh_h_offsets(), cell.xh_h_extents()).device(d) = h_prev;
61 // states1 = xh * w + b
62 typename TTypes<T>::ConstMatrix const_xh(xh.data(), xh.dimensions());
189 typename TTypes<T>::ConstVec b, typename TTypes<T>::Matrix xh, \
196 h_prev, w, wci, wcf, wco, b, xh, i, cs, f, o, ci, co, icfo, h); \
389 typename TTypes<T>::ConstVec b, typename TTypes<T>::Matrix xh, \
45 LSTMBlockCellFpropWithEigen( const LSTMBlockCell& cell, OpKernelContext* ctx, const CPUDevice& d, const T forget_bias, const T cell_clip, bool use_peephole, typename TTypes<T>::ConstMatrix x, typename TTypes<T>::ConstMatrix cs_prev, typename TTypes<T>::ConstMatrix h_prev, typename TTypes<T>::ConstMatrix w, typename TTypes<T>::ConstVec wci, typename TTypes<T>::ConstVec wcf, typename TTypes<T>::ConstVec wco, typename TTypes<T>::ConstVec b, typename TTypes<T>::Matrix xh, typename TTypes<T>::Matrix i, typename TTypes<T>::Matrix cs, typename TTypes<T>::Matrix f, typename TTypes<T>::Matrix o, typename TTypes<T>::Matrix ci, typename TTypes<T>::Matrix co, typename TTypes<T>::Matrix icfo, typename TTypes<T>::Matrix h) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c1512 LLVMValueRef xl, xh, v0l, v0h, v1l, v1h, resl, resh; local
1527 lp_build_unpack2_native(bld->gallivm, type, wide_type, x, &xl, &xh);
1538 resh = lp_build_lerp_simple(&wide_bld, xh, v0h, v1h, flags);

Completed in 231 milliseconds