| 1518 | |
| 1519 | template <typename LhsScalar, typename RhsScalar, typename SpecType> |
| 1520 | void TestSet<LhsScalar, RhsScalar, SpecType>::MakeLhsRhs() { |
| 1521 | RUY_CHECK(life_stage == LifeStage::kHasZeroPoints); |
| 1522 | MakeRandom(rows, depth, lhs_order, lhs_zero_point, layout_style, |
| 1523 | RandomRange::kAvoidMinValue, &lhs); |
| 1524 | MakeRandom(depth, cols, rhs_order, rhs_zero_point, layout_style, |
| 1525 | RandomRange::kGeneral, &rhs); |
| 1526 | life_stage = LifeStage::kHasLhsRhs; |
| 1527 | } |
| 1528 | |
| 1529 | template <typename LhsScalar, typename RhsScalar, typename SpecType> |
| 1530 | void TestSet<LhsScalar, RhsScalar, SpecType>::MakeSpec() { |
nothing calls this directly
no test coverage detected