Differentiate between CUTLASS 2.x and 3.x API versions
| 469 | |
| 470 | |
| 471 | class ApiVersion(enum.Enum): |
| 472 | """ |
| 473 | Differentiate between CUTLASS 2.x and 3.x API versions |
| 474 | """ |
| 475 | |
| 476 | v2x = enum_auto() |
| 477 | v3x = enum_auto() |
| 478 | |
| 479 | |
| 480 | def api_version(arch, opclass, dtype): |
nothing calls this directly
no test coverage detected