| 1990 | |
| 1991 | template <typename LhsScalar, typename RhsScalar, typename SpecType> |
| 1992 | void TestSet<LhsScalar, RhsScalar, SpecType>::Eval() { |
| 1993 | RUY_CHECK(life_stage == LifeStage::kHasPrepackedMatrices); |
| 1994 | for (auto& result : results) { |
| 1995 | if (benchmark) { |
| 1996 | Benchmark(result.get()); |
| 1997 | } else { |
| 1998 | EvalResult(result.get()); |
| 1999 | } |
| 2000 | } |
| 2001 | life_stage = LifeStage::kEvaluated; |
| 2002 | } |
| 2003 | |
| 2004 | template <typename Scalar> |
| 2005 | std::string DumpRegion(const Matrix<Scalar>& matrix, int center_row, |