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

  /external/tensorflow/tensorflow/contrib/nn/python/ops/
fwd_gradients.py 60 dydxs = [ops.convert_to_tensor(dydx) if isinstance(dydx, ops.IndexedSlices)
61 else dydx for dydx in dydxs]
69 dydxs = [array_ops.zeros_like(x) if dydx is None else dydx
70 for x, dydx in zip(xs, dydxs)]
71 for x, dydx in zip(xs, dydxs):
72 dydx.set_shape(x.shape)
fwd_gradients_test.py 45 dydx = fwd_gradients.fwd_gradients([y], [x], assert_unused=True)
48 sess.run(dydx)
  /external/libavc/common/
ih264_inter_pred_filters.c 117 WORD32 dydx)
121 UNUSED(dydx);
234 WORD32 dydx)
239 UNUSED(dydx);
304 WORD32 dydx)
309 UNUSED(dydx);
351 * \param dydx: x and y reference offset for qpel calculations: UNUSED in this function.
373 WORD32 dydx)
379 UNUSED(dydx);
436 * \param dydx: x and y reference offset for qpel calculations
    [all...]
ih264_inter_pred_filters.h 110 WORD32 dydx);
  /external/tensorflow/tensorflow/cc/gradients/
math_grad.cc 90 auto dydx = Mul(scope, two, op.input(0)); local
93 Mul(scope, grad_inputs[0], ConjugateHelper(scope, dydx)));
135 auto dydx = Exp(scope, op.input(0)); local
138 Mul(scope, grad_inputs[0], ConjugateHelper(scope, dydx)));
148 auto dydx = Reciprocal(scope, op.input(0)); local
151 Mul(scope, grad_inputs[0], ConjugateHelper(scope, dydx)));
162 auto dydx = Reciprocal(scope, Add(scope, one, op.input(0))); local
165 Mul(scope, grad_inputs[0], ConjugateHelper(scope, dydx)));
175 auto dydx = Cosh(scope, op.input(0)); local
178 Mul(scope, grad_inputs[0], ConjugateHelper(scope, dydx)));
188 auto dydx = Sinh(scope, op.input(0)); local
217 auto dydx = Reciprocal(scope, Cosh(scope, op.output(0))); local
230 auto dydx = Reciprocal(scope, Sinh(scope, op.output(0))); local
244 auto dydx = Reciprocal(scope, Sub(scope, one, Square(scope, op.input(0)))); local
284 auto dydx = Cos(scope, op.input(0)); local
297 auto dydx = Neg(scope, Sin(scope, op.input(0))); local
312 auto dydx = Reciprocal(scope, Sqrt(scope, Sub(scope, one, x2))); local
328 auto dydx = Neg(scope, Reciprocal(scope, Sqrt(scope, Sub(scope, one, x2)))); local
340 auto dydx = Square(scope, Reciprocal(scope, Cos(scope, op.input(0)))); local
355 auto dydx = Reciprocal(scope, Add(scope, one, Square(scope, op.input(0)))); local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_line.c 358 float dydx = dy / dx; local
383 float yintersect = fracf(v1[0][1]) + x1diff * dydx;
402 float yintersect = fracf(v2[0][1]) + x2diff * dydx;
421 y_offset_end = x_offset_end * dydx;
426 y_offset = x_offset * dydx;
434 y_offset = x_offset * dydx;
438 y_offset_end = x_offset_end * dydx;
  /external/libavc/common/arm/
ih264_inter_pred_luma_horz_qpel_a9q.s 75 @* @param[in] dydx: x and y reference offset for qpel calculations.
92 @ UWORD32 dydx)
101 @ r7 => dydx
115 ldr r7, [sp, #116] @Loads dydx
ih264_inter_pred_luma_horz_qpel_vert_hpel_a9q.s 86 @* @param[in] dydx: x and y reference offset for qpel calculations
103 @ UWORD32 dydx)
112 @ r6 => dydx
128 ldr r6, [sp, #116] @ loads dydx
129 and r6, r6, #2 @ dydx & 0x3 followed by dydx>>1 and dydx<<1
ih264_inter_pred_luma_horz_qpel_vert_qpel_a9q.s 82 @* @param[in] dydx: x and y reference offset for qpel calculations
99 @ UWORD32 dydx)
108 @ r6 => dydx
121 ldr r6, [sp, #116] @dydx
126 lsr r6, r6, #3 @dydx>>3
ih264_inter_pred_luma_vert_qpel_a9q.s 73 @* @param[in] dydx: x and y reference offset for qpel calculations.
90 @ UWORD32 dydx)
99 @ r7 => dydx
113 ldr r7, [sp, #116] @Loads dydx
115 lsr r7, r7, #3 @dydx>>3
ih264_inter_pred_luma_horz_hpel_vert_qpel_a9q.s 86 @* @param[in] dydx: x and y reference offset for qpel calculations
103 @ UWORD32 dydx)
112 @ r7 => dydx
128 ldr r7, [sp, #116] @ loads dydx
129 lsr r7, r7, #3 @ dydx >> 2 followed by dydx & 0x3 and dydx>>1 to obtain the deciding bit
ih264_inter_pred_luma_horz_hpel_vert_hpel_a9q.s 83 @* @param[in] dydx: x and y reference offset for qpel calculations: UNUSED in this function.
100 @ UWORD32 dydx)
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 371 GLfloat dydx = line->dy / line->dx; local
411 yBot += dydx;
412 yTop += dydx;
  /external/libavc/common/x86/
ih264_inter_pred_filters_ssse3.c 97 WORD32 dydx)
103 UNUSED(dydx);
223 WORD32 dydx)
229 UNUSED(dydx);
488 WORD32 dydx)
500 UNUSED(dydx);
    [all...]
  /external/tensorflow/tensorflow/python/ops/
gradients_test.py 334 dydxs = [0. * x if dydx is None else dydx
335 for x, dydx in zip(xs, dydxs)]
    [all...]
  /external/libhevc/encoder/
hme_subpel.c 250 S32 dx, dy, dydx; local
263 dydx = (dx + (dy << 2));
265 vert_func_selector = gai4_select_qpel_function_vert[pt_select_for_TB][dydx];
266 horz_func_selector = gai4_select_qpel_function_horz[pt_select_for_LR][dydx];
    [all...]

Completed in 298 milliseconds