Check if the hardware required by the kernel is compatible.
(self)
| 65 | |
| 66 | @abstractmethod |
| 67 | def assert_compatible(self) -> None: |
| 68 | """ |
| 69 | Check if the hardware required by the kernel is compatible. |
| 70 | """ |
| 71 | |
| 72 | @abstractmethod |
| 73 | def build_aot(self) -> Union["CppExtension", "CUDAExtension"]: |
no outgoing calls