| 275 | } |
| 276 | |
| 277 | TF_Operation* RandomUniform(TF_Operation* shape, TF_DataType dtype, |
| 278 | TF_Graph* graph, TF_Status* s) { |
| 279 | TF_OperationDescription* desc = |
| 280 | TF_NewOperation(graph, "RandomUniform", "random_uniform"); |
| 281 | TF_AddInput(desc, {shape, 0}); |
| 282 | TF_SetAttrType(desc, "dtype", dtype); |
| 283 | return TF_FinishOperation(desc, s); |
| 284 | } |
| 285 | |
| 286 | void Split3Helper(TF_Operation* input, TF_Graph* graph, TF_Status* s, |
| 287 | const char* name, TF_Operation** op) { |
no test coverage detected