| 267 | } |
| 268 | |
| 269 | TF_Operation* LessThan(TF_Output l, TF_Output r, TF_Graph* graph, |
| 270 | TF_Status* s) { |
| 271 | TF_OperationDescription* desc = TF_NewOperation(graph, "Less", "less_than"); |
| 272 | TF_AddInput(desc, l); |
| 273 | TF_AddInput(desc, r); |
| 274 | return TF_FinishOperation(desc, s); |
| 275 | } |
| 276 | |
| 277 | TF_Operation* RandomUniform(TF_Operation* shape, TF_DataType dtype, |
| 278 | TF_Graph* graph, TF_Status* s) { |
no test coverage detected