Uniform random number generation tests
| 68 | |
| 69 | // Uniform random number generation tests |
| 70 | XLA_TEST_F(PrngTest, ScalarU01) { UniformTest<float>(0, 1, {}); } |
| 71 | XLA_TEST_F(PrngTest, ScalarU01limits) { |
| 72 | UniformTest<float>(std::numeric_limits<float>::min(), |
| 73 | std::numeric_limits<float>::max(), {}); |
nothing calls this directly
no test coverage detected