Home | History | Annotate | Download | only in reference

Lines Matching refs:in_w

389           const int in_w = out_w / block_size;
395 const int input_index = Offset(input_dims, in_d, in_w, in_h, in_b);
425 for (int in_w = 0; in_w < input_width; ++in_w) {
428 in_d + ((in_h % block_size) * block_size + in_w % block_size) *
430 const int out_w = in_w / block_size;
436 const int input_index = Offset(input_dims, in_d, in_w, in_h, in_b);
2626 for (int in_w = 0; in_w < input_width; ++in_w) {
2628 int out_w = in_w * block_shape_width +
2633 const T* in = input_data + Offset(input_dims, 0, in_w, in_h, in_batch);
2734 for (int in_w = start_w; LoopCondition(in_w, stop_w, strides[1]);
2735 in_w += strides[1]) {
2738 *out_ptr++ = input_data[Offset(input_dims, in_d, in_w, in_h, in_b)];
2780 for (int in_w = start_w; in_w < stop_w; ++in_w
2782 *out_ptr++ = input_data[Offset(input_dims, in_d, in_w, in_h, in_b)];
2879 for (int in_w = 0; in_w < input_width; ++in_w) {
2880 value += input_data[Offset(input_dims, out_d, in_w, in_h, out_b)];