| 440 | } |
| 441 | |
| 442 | Node* Relu(Graph* g, Node* in) { |
| 443 | Node* ret; |
| 444 | TF_CHECK_OK(NodeBuilder(g->NewName("n"), "Relu") |
| 445 | .Input(in, 0) |
| 446 | .Attr("T", DT_FLOAT) |
| 447 | .Finalize(g, &ret)); |
| 448 | return ret; |
| 449 | } |
| 450 | |
| 451 | Node* Relu6(Graph* g, Node* in) { |
| 452 | Node* ret; |
no test coverage detected