12345678910111213 |
- @@ -298,8 +298,8 @@
- dtype = d.query.dtype
- if device_type not in cls.SUPPORTED_DEVICES:
- reasons.append(f"device={device_type} (supported: {cls.SUPPORTED_DEVICES})")
- - if device_type == "cuda" and not _built_with_cuda:
- - reasons.append("xFormers wasn't build with CUDA support")
- + #if device_type == "cuda" and not _built_with_cuda:
- + # reasons.append("xFormers wasn't build with CUDA support")
- if device_type == "cuda":
- device_capability = torch.cuda.get_device_capability(d.device)
- if device_capability < cls.CUDA_MINIMUM_COMPUTE_CAPABILITY:
|