Tags for whether to emit a kernel- or device-level operation
| 501 | |
| 502 | |
| 503 | class EmissionType(enum.Enum): |
| 504 | """ |
| 505 | Tags for whether to emit a kernel- or device-level operation |
| 506 | """ |
| 507 | |
| 508 | Kernel = enum_auto() |
| 509 | Device = enum_auto() |
nothing calls this directly
no test coverage detected