| 99 | } |
| 100 | |
| 101 | inline uint64 NextPowerOfTwo64(uint64 value) { |
| 102 | int exponent = Log2Ceiling(value); |
| 103 | DCHECK_LT(exponent, std::numeric_limits<uint64>::digits); |
| 104 | return 1LL << exponent; |
| 105 | } |
| 106 | |
| 107 | } // namespace tensorflow |
| 108 |
nothing calls this directly
no test coverage detected