Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_math_ops.py1244 weights_sum = array_ops.size(a)
1246 weights_sum = array_ops.shape(a)[axis]
1247 weights_sum = math_ops.cast(weights_sum, a.dtype)
1261 weights_sum = math_ops.reduce_sum(weights, axis=axis)
1262 avg = math_ops.reduce_sum(a * weights, axis=axis) / weights_sum
1263 return avg, weights_sum
1266 avg, weights_sum = rank_equal_case()
1272 weights_sum = math_ops.reduce_sum(weights)
1274 avg = math_ops.tensordot(a, weights, axes) / weights_sum
1275 return avg, weights_sum
[all …]
/external/deqp/external/openglcts/modules/glesext/gpu_shader5/
DesextcGPUShader5PreciseQualifier.cpp288 glw::GLfloat weights_sum = 1.0f; in iterate() local
301 weights_sum -= random_value; in iterate()
305 vertex_data_weights[component_nr] = weights_sum; in iterate()