Home | History | Annotate | Download | only in internal

Lines Matching refs:CellFormat

79 // contains a CellFormat and a number of cells; cells are only ever
90 // KernelSideFormat<CellFormat<3, 4>, 3>,
91 // KernelSideFormat<CellFormat<5, 4>, 2>
94 // The LHS format, KernelSideFormat<CellFormat<3, 4>, 3>, means:
96 // DepthMajor order (the default value, see CellFormat). In the LHS,
110 // The RHS format, KernelSideFormat<CellFormat<5, 4>, 2>, means:
112 // DepthMajor order (the default value, see CellFormat). In the RHS,
125 // CellFormat describes how data is laid
128 struct CellFormat {
137 // (i.e. LHS or RHS). That is, a CellFormat together with a number of
178 template <typename CellFormat>
180 switch (CellFormat::kOrder) {
182 return w + d * CellFormat::kWidth;
184 return d + w * CellFormat::kDepth;
186 assert(CellFormat::kWidth == CellFormat::kDepth);
187 static const int size = CellFormat::kWidth;