Lines Matching refs:weight_ptr
101 const float *weight_ptr =
104 // Invariant 1: weight_ptr points to the beginning of the i-th row from
108 for (int j = 0; j < y_size; ++j, ++weight_ptr) {
109 // Invariant 2: weight_ptr points to weights[i][j].
110 y_data[j] += (*weight_ptr) * scale;
113 // We don't update y_data, but we still have to move weight_ptr to the
116 weight_ptr += y_size;
127 const float16 *weight_ptr =
132 for (int j = 0; j < y_size; ++j, ++weight_ptr) {
133 y_data[j] += Float16To32(*weight_ptr) * scale;
136 weight_ptr += y_size;