Home
last modified time | relevance | path

Searched refs:gvalue (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_expr.cpp79 if (l->gvalue() == r->gvalue()) in equal()
92 if (l->rel->gvalue() == r->rel->gvalue() in ivars_equal()
190 value* v0 = n.src[0]->gvalue(); in fold_setcc()
191 value* v1 = n.src[1]->gvalue(); in fold_setcc()
392 value* v0 = n.src[0]->gvalue(); in fold_alu_op1()
407 v0 = n.src[0]->gvalue(); in fold_alu_op1()
479 value* v0 = n->src[0]->gvalue(); in fold_mul_add()
516 value* v1 = n->src[1]->gvalue(); in fold_mul_add()
639 value *v0 = a->src[0]->gvalue(); in fold_assoc()
640 value *v1 = a->src[1]->gvalue(); in fold_assoc()
[all …]
Dsb_ir.h513 value* gvalue() { in gvalue() function
522 value *v = gvalue(); in is_float_0_or_1()
527 bool is_undef() { return gvalue()->kind == VLK_UNDEF; } in is_undef()
563 value *v = gvalue(); in get_const_value()
586 gvn_source = v->gvalue(); in assign_source()
589 bool v_equal(value *v) { return gvalue() == v->gvalue(); } in v_equal()
/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Dadagrad_test.py56 gvalue = gvalues[i]
57 accum_t[gindex] = accum_t[gindex] + gvalue * gvalue
60 gvalue = gvalues[i]
61 param_t[gindex] = param_t[gindex] - lr * gvalue / (
Drmsprop_test.py85 gvalue = gvalues[i]
86 rms_t[gindex] = rms[gindex] * rho + (1 - rho) * gvalue * gvalue
88 mg_t[gindex] = mg_t[gindex] * rho + (1 - rho) * gvalue
93 mom_t[gindex] = momentum * mom[gindex] + lr * gvalue / np.sqrt(denom_t +
98 var_t[gindex] = var[gindex] - lr * gvalue / (np.sqrt(denom_t) + epsilon)
/external/tensorflow/tensorflow/contrib/optimizer_v2/
Drmsprop_test.py78 gvalue = gvalues[i]
79 rms_t[gindex] = rms[gindex] * decay + (1 - decay) * gvalue * gvalue
82 mg_t[gindex] = mg_t[gindex] * decay + (1 - decay) * gvalue
84 mom_t[gindex] = momentum * mom[gindex] + lr * gvalue / np.sqrt(denom_t)
/external/tensorflow/tensorflow/python/training/
Drmsprop_test.py82 gvalue = gvalues[i]
83 rms_t[gindex] = rms[gindex] * decay + (1 - decay) * gvalue * gvalue
86 mg_t[gindex] = mg_t[gindex] * decay + (1 - decay) * gvalue
88 mom_t[gindex] = momentum * mom[gindex] + lr * gvalue / np.sqrt(denom_t)