| 638 | // Returns the quotient a / b rounded up ('ceil') to the nearest integer. |
| 639 | template <typename Integer> |
| 640 | Integer CeilQuotient(Integer a, Integer b) { |
| 641 | return (a + b - 1) / b; |
| 642 | } |
| 643 | |
| 644 | // This function is a copy of gemmlowp::HowManyThreads, copied when we dropped |
| 645 | // the direct dependency of internal/optimized/ on gemmlowp. |
no outgoing calls
no test coverage detected