True if hipBLAS was built in and a ROCm device is present.
()
| 253 | |
| 254 | |
| 255 | def has_hipblas() -> bool: |
| 256 | """True if hipBLAS was built in and a ROCm device is present.""" |
| 257 | return has_rocm() and _build_flag_enabled("USE_HIPBLAS") |
| 258 | |
| 259 | |
| 260 | def has_cutlass() -> bool: |
nothing calls this directly
no test coverage detected
searching dependent graphs…