Example #1
0
def no_vector_backend():
    import platform
    if platform.machine().startswith('x86'):
        from rpython.jit.backend.x86.detect_feature import detect_sse4_2
        return not detect_sse4_2()
    if platform.machine().startswith('ppc'):
        from rpython.jit.backend.ppc.detect_feature import detect_vsx
        return not detect_vsx()
    if platform.machine() == "s390x":
        from rpython.jit.backend.zarch.detect_feature import detect_simd_z
        return not detect_simd_z()
    return True
Example #2
0
def no_vector_backend():
    import platform
    if platform.machine().startswith('x86'):
        from rpython.jit.backend.x86.detect_feature import detect_sse4_2
        return not detect_sse4_2()
    if platform.machine().startswith('ppc'):
        from rpython.jit.backend.ppc.detect_feature import detect_vsx
        return not detect_vsx()
    if platform.machine() == "s390x":
        from rpython.jit.backend.zarch.detect_feature import detect_simd_z
        return not detect_simd_z()
    return True
Example #3
0
def no_vector_backend():
    if IS_X86:
        from rpython.jit.backend.x86.detect_feature import detect_sse4_2
        if sys.maxsize < 2**31:
            return True    
        return not detect_sse4_2()
    if platform.machine().startswith('ppc'):
        from rpython.jit.backend.ppc.detect_feature import detect_vsx
        return not detect_vsx()
    if platform.machine() == "s390x":
        from rpython.jit.backend.zarch.detect_feature import detect_simd_z
        return not detect_simd_z()
    return True
Example #4
0
 def setup_once(self, asm):
     if detect_vsx():
         self.enable(16, accum=True)
         asm.setup_once_vector()
     self._setup = True
Example #5
0
 def supports_vector_ext(self):
     return detect_vsx()
Example #6
0
 def supports_vector_ext(self):
     return detect_vsx()
Example #7
0
 def setup_once(self, asm):
     if detect_vsx():
         self.enable(16, accum=True)
         asm.setup_once_vector()
     self._setup = True