| 191 | } |
| 192 | |
| 193 | Node* RandomUniform(Graph* g, Node* input, DataType dtype) { |
| 194 | return RandomNumberGenerator("RandomUniform", g, input, dtype); |
| 195 | } |
| 196 | |
| 197 | Node* RandomGaussian(Graph* g, Node* input, DataType dtype) { |
| 198 | return RandomNumberGenerator("RandomStandardNormal", g, input, dtype); |
no test coverage detected