Files
Mofox-Core/test_cpu.py
2025-04-25 04:01:57 +08:00

5 lines
143 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import cpuinfo
cpu_info = cpuinfo.get_cpu_info()
print(f"当前cpu信息:{cpu_info}")
print(f"当前cpu指令集支持{cpu_info["flags"]}")