Home | History | Annotate | Download | only in test

Lines Matching defs:Map

13 #include <map>
51 typedef MatrixMap<tScalar, tOrder> Map;
53 typedef typename Map::Scalar Scalar;
55 using Map::cols_;
56 using Map::data_;
57 using Map::kOrder;
58 using Map::rows_;
59 using Map::stride_;
62 Matrix() : Map(nullptr, 0, 0, 0) {}
64 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
66 Matrix(const Matrix& other) : Map(nullptr, 0, 0, 0) { *this = other; }
89 Map& map() { return *static_cast<Map*>(this); }
139 &gemm_context, lhs.const_map(), rhs.const_map(), &result.map(), -128,
150 &gemm_context, lhs.const_map(), rhs.const_map(), &result.map(), -128,
181 &gemm_context, lhs.const_map(), rhs.const_map(), &result.map(), -128,
192 &gemm_context, lhs.const_map(), rhs.const_map(), &result.map(), -128,
316 void run_benchmarks(std::map<Shape, float>* results) {
347 std::map<Shape, float> results;