Compute flops for Square operation.
(graph, node)
| 76 | |
| 77 | @ops.RegisterStatistics("Square", "flops") |
| 78 | def _square_flops(graph, node): |
| 79 | """Compute flops for Square operation.""" |
| 80 | return _unary_op_flops(graph, node) |
| 81 | |
| 82 | |
| 83 | @ops.RegisterStatistics("Rsqrt", "flops") |
nothing calls this directly
no test coverage detected