Searched refs:CellOrder (Results 1 – 6 of 6) sorted by relevance
/external/gemmlowp/internal/ |
D | kernel.h | 123 enum class CellOrder { DepthMajor, WidthMajor, Diagonal }; enum 127 template <int tWidth, int tDepth, CellOrder tOrder = CellOrder::DepthMajor> 131 static const CellOrder kOrder = tOrder; 163 inline const char* CellOrderName(CellOrder o) { in CellOrderName() 165 case CellOrder::DepthMajor: in CellOrderName() 167 case CellOrder::WidthMajor: in CellOrderName() 169 case CellOrder::Diagonal: in CellOrderName() 181 case CellOrder::DepthMajor: in OffsetIntoCell() 183 case CellOrder::WidthMajor: in OffsetIntoCell() 185 case CellOrder::Diagonal: in OffsetIntoCell()
|
D | kernel_SSE.h | 34 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, 1>, 35 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, 1> > 207 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, 3>, 208 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, 1> >
|
D | kernel_neon.h | 269 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, 3>, 270 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, 1> >
|
D | pack_SSE.h | 63 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, Cells>;
|
D | pack_neon.h | 268 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, Cells>;
|
/external/gemmlowp/test/ |
D | test.cc | 1387 KernelSideFormat<CellFormat<3, 4, CellOrder::DepthMajor>, 2>, in TestExhaustively() 1388 KernelSideFormat<CellFormat<5, 4, CellOrder::DepthMajor>, 3>>>>(&context); in TestExhaustively() 1391 KernelSideFormat<CellFormat<3, 4, CellOrder::WidthMajor>, 2>, in TestExhaustively() 1392 KernelSideFormat<CellFormat<5, 4, CellOrder::WidthMajor>, 3>>>>(&context); in TestExhaustively() 1395 KernelSideFormat<CellFormat<5, 2, CellOrder::WidthMajor>, 3>, in TestExhaustively() 1396 KernelSideFormat<CellFormat<4, 2, CellOrder::DepthMajor>, 2>>>>(&context); in TestExhaustively() 1399 KernelSideFormat<CellFormat<5, 2, CellOrder::DepthMajor>, 3>, in TestExhaustively() 1400 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, 2>>>>(&context); in TestExhaustively() 1403 KernelSideFormat<CellFormat<8, 8, CellOrder::Diagonal>, 2>, in TestExhaustively() 1404 KernelSideFormat<CellFormat<3, 8, CellOrder::WidthMajor>, 1>>>>(&context); in TestExhaustively() [all …]
|