(args)
| 1813 | |
| 1814 | |
| 1815 | def GenerateDeconvOperations(args): |
| 1816 | if args.type == "simt": |
| 1817 | return GenerateDeconv_Simt(args) |
| 1818 | else: |
| 1819 | assert args.type == "tensorop8816", ( |
| 1820 | "operation deconv only support" |
| 1821 | "simt and tensorop8816. (got:{})".format(args.type) |
| 1822 | ) |
| 1823 | return GenerateDeconv_TensorOp_8816(args) |
| 1824 | |
| 1825 | |
| 1826 | def GenerateDwconv2dFpropOperations(args): |
no test coverage detected