Compute flops for Log operation.
(graph, node)
| 89 | |
| 90 | @ops.RegisterStatistics("Log", "flops") |
| 91 | def _log_flops(graph, node): |
| 92 | """Compute flops for Log operation.""" |
| 93 | return _unary_op_flops(graph, node) |
| 94 | |
| 95 | |
| 96 | @ops.RegisterStatistics("Neg", "flops") |
nothing calls this directly
no test coverage detected