(ctx, input_, alpha)
| 11 | class ReverseLayerF(Function): |
| 12 | @staticmethod |
| 13 | def forward(ctx, input_, alpha): |
| 14 | ctx.alpha = alpha |
| 15 | return input_ |
| 16 | |
| 17 | @staticmethod |
| 18 | def backward(ctx, grad_output): |
nothing calls this directly
no outgoing calls
no test coverage detected