| 3519 | } |
| 3520 | |
| 3521 | XlaOp RngBitGenerator(RandomAlgorithm algorithm, const XlaOp initial_state, |
| 3522 | const Shape& shape) { |
| 3523 | return initial_state.builder()->RngBitGenerator(algorithm, initial_state, |
| 3524 | shape); |
| 3525 | } |
| 3526 | |
| 3527 | XlaOp While(const XlaComputation& condition, const XlaComputation& body, |
| 3528 | const XlaOp init) { |
no test coverage detected