Compute flops for Neg operation.
(graph, node)
| 95 | |
| 96 | @ops.RegisterStatistics("Neg", "flops") |
| 97 | def _neg_flops(graph, node): |
| 98 | """Compute flops for Neg operation.""" |
| 99 | return _unary_op_flops(graph, node) |
| 100 | |
| 101 | |
| 102 | @ops.RegisterStatistics("AssignSub", "flops") |
nothing calls this directly
no test coverage detected