Lines Matching refs:cols
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) {}
66 (a.depth < b.depth || (a.depth <= b.depth && (a.cols < b.cols))));
79 int cols = gemm.cols;
81 sizeof(Scalar) * (rows * depth + depth * cols + rows * cols);
95 rhs[k].Resize(gemms[j].depth, gemms[j].cols);
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
307 googlenet_gemms[i].cols = googlenet_gemm_sizes[3 * i + 0];
329 small_model_gemms[i].cols = small_model_gemm_sizes[3 * i + 0];