Return True if the compiled _C extension includes sm_120 (cc 12.0) support.
()
| 33 | |
| 34 | |
| 35 | def _has_sm120_support() -> bool: |
| 36 | """Return True if the compiled _C extension includes sm_120 (cc 12.0) support.""" |
| 37 | return _get_max_cc() >= 1200 |
| 38 | |
| 39 | |
| 40 | class TestCompiledUnsupported(unittest.TestCase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…