Lines Matching full:rows
58 int rows, depth, cols;
59 gemm_t() : rows(0), depth(0), cols(0) {}
60 gemm_t(int r, int d, int c) : rows(r), depth(d), cols(c) {}
64 return a.rows < b.rows ||
65 (a.rows <= b.rows &&
77 int rows = gemm.rows;
81 sizeof(Scalar) * (rows * depth + depth * cols + rows * cols);
93 lhs[k].Resize(gemms[j].rows, gemms[j].depth);
97 result[k].Resize(gemms[j].rows, gemms[j].cols);
144 ops += 2.0 * gemm.rows * gemm.depth * gemm.cols;
206 std::cout << b.first.rows << "x" << b.first.depth << "x" << b.first.cols
305 googlenet_gemms[i].rows = googlenet_gemm_sizes[3 * i + 1];
327 small_model_gemms[i].rows = small_model_gemm_sizes[3 * i + 1];