Searched refs:weight_2 (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/image/ |
D | resize_bicubic_op.cc | 76 float weight_2; member 108 out->weight_2 = in GetWeightsAndIndices() 117 out->weight_0 + out->weight_1 + out->weight_2 + out->weight_3; in GetWeightsAndIndices() 122 out->weight_2 *= one_over_weight_sum; in GetWeightsAndIndices() 128 out->weight_2 = coeffs_table[(kTableSize - offset) * 2]; in GetWeightsAndIndices() 139 const float weight_2, const float weight_3, in Interpolate1D() argument 144 static_cast<float>(value_2) * weight_2 + in Interpolate1D() 288 return Interpolate1D<T>(y_wai.weight_0, y_wai.weight_1, y_wai.weight_2, in ComputeYInterpolation() 400 x_wai.weight_2, x_wai.weight_3); in interpolate_with_caching() 403 x_wai.weight_2, x_wai.weight_3); in interpolate_with_caching() [all …]
|
/external/tensorflow/tensorflow/python/training/ |
D | moving_averages_test.py | 128 weight_2 = 22.0 129 wma_array = sess.run(wma, feed_dict={val: val_2, weight: weight_2}) 130 numerator_2 = numerator_1 * decay + val_2 * weight_2 * (1.0 - decay) 131 denominator_2 = denominator_1 * decay + weight_2 * (1.0 - decay) 154 weight_2 = 22.0 155 wma_array = sess.run(wma, feed_dict={val: val_2, weight: weight_2}) 156 numerator_2 = numerator_1 * decay + val_2 * weight_2 * (1.0 - decay) 157 denominator_2 = denominator_1 * decay + weight_2 * (1.0 - decay)
|
/external/tensorflow/tensorflow/lite/micro/kernels/xtensa/ |
D | depthwise_conv.cc | 238 ae_p24x2s weight_0, weight_1, weight_2, weight_3; in DepthwiseConv4x32MatchingInputAndFilter() local 241 AE_LP8X2F_IU(weight_2, weight_2_ptr, 2); in DepthwiseConv4x32MatchingInputAndFilter() 266 AE_MULAS56P24S_HH(block_0_acc, input_2, weight_2); in DepthwiseConv4x32MatchingInputAndFilter() 271 AE_MULAS56P24S_LL(block_1_acc, input_2, weight_2); in DepthwiseConv4x32MatchingInputAndFilter()
|