Transpose.
(model, blob_in, blob_out, use_cudnn=False, **kwargs)
| 7 | |
| 8 | |
| 9 | def transpose(model, blob_in, blob_out, use_cudnn=False, **kwargs): |
| 10 | """Transpose.""" |
| 11 | if use_cudnn: |
| 12 | kwargs['engine'] = 'CUDNN' |
| 13 | return model.net.Transpose(blob_in, blob_out, **kwargs) |
| 14 | |
| 15 | |
| 16 | def sum(model, blob_in, blob_out, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…