(self)
| 117 | class BuildExtensionIgnoreErrors(BuildExtension): |
| 118 | |
| 119 | def finalize_options(self): |
| 120 | try: |
| 121 | super().finalize_options() |
| 122 | except Exception as e: |
| 123 | print(CUDA_ERROR_MSG.format(e)) |
| 124 | self.extensions = [] |
| 125 | |
| 126 | def build_extensions(self): |
| 127 | try: |