| 1569 | |
| 1570 | template <typename LhsScalar, typename RhsScalar, typename SpecType> |
| 1571 | void TestSet<LhsScalar, RhsScalar, SpecType>::MakeOtherParams() { |
| 1572 | RUY_CHECK(life_stage == LifeStage::kHasSpec); |
| 1573 | if (max_num_threads == 0) { |
| 1574 | max_num_threads = GetIntEnvVarOrZero("THREADS"); |
| 1575 | } |
| 1576 | life_stage = LifeStage::kHasOtherParams; |
| 1577 | } |
| 1578 | |
| 1579 | std::vector<Path> PathsBitfieldAsVector(Path paths_bitfield) { |
| 1580 | std::vector<Path> result; |
nothing calls this directly
no test coverage detected