Lines Matching refs:Matrix
43 // gemmlowp itself doesn't have a Matrix class, only a MatrixMap class,
47 class Matrix : public MatrixMap<tScalar, tOrder> {
60 Matrix() : Map(nullptr, 0, 0, 0) {}
62 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
64 Matrix(const Matrix& other) : Map(nullptr, 0, 0, 0) { *this = other; }
66 Matrix& operator=(const Matrix& other) {
72 friend bool operator==(const Matrix& a, const Matrix& b) {
107 ScopedProfilingLabel("MakeRandom(matrix)");
120 ScopedProfilingLabel("MakeConstant(matrix)");
130 ScopedProfilingLabel("MakeZero(matrix)");