mirror of
https://github.com/google/cpu_features.git
synced 2025-04-28 07:23:37 +02:00
19 lines
439 B
Python
19 lines
439 B
Python
"""Defines global variables that lists target cpus"""
|
|
|
|
PLATFORM_CPU_X86_64 = ("@platforms//cpu:x86_64")
|
|
|
|
PLATFORM_CPU_ARM = ("@platforms//cpu:arm")
|
|
|
|
PLATFORM_CPU_ARM64 = ("@platforms//cpu:arm64")
|
|
|
|
PLATFORM_CPU_MIPS = ("@platforms//cpu:mips64")
|
|
|
|
PLATFORM_CPU_PPC = ("@platforms//cpu:ppc")
|
|
|
|
PLATFORM_CPU_RISCV32 = ("@platforms//cpu:riscv32")
|
|
|
|
PLATFORM_CPU_RISCV64 = ("@platforms//cpu:riscv64")
|
|
|
|
|
|
PLATFORM_OS_MACOS = ("@platforms//os:macos")
|