| 195 | } |
| 196 | |
| 197 | Node* RandomGaussian(Graph* g, Node* input, DataType dtype) { |
| 198 | return RandomNumberGenerator("RandomStandardNormal", g, input, dtype); |
| 199 | } |
| 200 | |
| 201 | Node* TruncatedNormal(Graph* g, Node* input, DataType dtype) { |
| 202 | return RandomNumberGenerator("TruncatedNormal", g, input, dtype); |
no test coverage detected