(self)
| 112 | return float("nan") |
| 113 | |
| 114 | def _cpu_features(self): |
| 115 | target = self.target_name |
| 116 | if target == "baseline": |
| 117 | target = __cpu_baseline__ |
| 118 | else: |
| 119 | target = target.split('__') # multi-target separator |
| 120 | return ' '.join(target) |
| 121 | |
| 122 | class _SIMD_BOOL(_Test_Utility): |
| 123 | """ |
no test coverage detected