| 235 | } |
| 236 | |
| 237 | TF_Operation* Mul(TF_Operation* l, TF_Operation* r, TF_Graph* graph, |
| 238 | TF_Status* s, const char* name) { |
| 239 | TF_Operation* op; |
| 240 | BinaryOpHelper("Mul", l, r, graph, s, name, &op, "", true); |
| 241 | return op; |
| 242 | } |
| 243 | |
| 244 | TF_Operation* Add(TF_Output l, TF_Output r, TF_Graph* graph, TF_Status* s, |
| 245 | const char* name) { |
no test coverage detected