Home
last modified time | relevance | path

Searched refs:mul_factor (Results 1 – 2 of 2) sorted by relevance

/external/libaom/libaom/av1/encoder/
Drdopt_utils.h244 int mul_factor, in get_rd_thresh_from_best_rd() argument
248 rd_thresh = ref_best_rd < (div_factor * (INT64_MAX / mul_factor)) in get_rd_thresh_from_best_rd()
249 ? ((ref_best_rd / div_factor) * mul_factor) in get_rd_thresh_from_best_rd()
357 int mul_factor = is_luma_only ? luma_mul[level] : 16; in check_txfm_eval() local
361 : (int64_t)(best_skip_rd * aggr_factor * mul_factor >> 4); in check_txfm_eval()
/external/tensorflow/tensorflow/core/kernels/
Dtraining_ops_gpu.cu.cc269 const T mul_factor = (*lr_) * sqrt(static_cast<T>(1.0) - (*beta2_power_)) / in ApplyAdamKernel() local
286 var[i] -= mul_factor * (m_i * beta1 + one_minus_beta1 * g_i) / in ApplyAdamKernel()
289 var[i] -= mul_factor * m_i / (epsilon + sqrt(v_i)); in ApplyAdamKernel()