Home | History | Annotate | Download | only in cuda

Lines Matching refs:l_t

221                               const float l_t, const float theta, const float gamma, const bool calcError)
244 if (rho < -l_t * gradVal)
246 d1 = l_t * I1wxVal;
247 d2 = l_t * I1wyVal;
249 d3 = l_t * gamma;
251 else if (rho > l_t * gradVal)
253 d1 = -l_t * I1wxVal;
254 d2 = -l_t * I1wyVal;
256 d3 = -l_t * gamma;
300 float l_t, float theta, float gamma, bool calcError,
306 estimateUKernel<<<grid, block, 0, stream>>>(I1wx, I1wy, grad, rho_c, p11, p12, p21, p22, p31, p32, u1, u2, u3, error, l_t, theta, gamma, calcError);