Home | History | Annotate | Download | only in test

Lines Matching defs:depth

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))));
78 int depth = gemm.depth;
81 sizeof(Scalar) * (rows * depth + depth * cols + rows * cols);
93 lhs[k].Resize(gemms[j].rows, gemms[j].depth);
95 rhs[k].Resize(gemms[j].depth, 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
306 googlenet_gemms[i].depth = googlenet_gemm_sizes[3 * i + 2];
328 small_model_gemms[i].depth = small_model_gemm_sizes[3 * i + 2];