mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-25 11:58:36 -06:00
Add support for arrowlake-s and lunarlake CPUs
This commit is contained in:
parent
8b9c9f677a
commit
7fe3afbbc2
@ -136,7 +136,9 @@ void cpu_translator::initialize(llvm::LLVMContext& context, llvm::ExecutionEngin
|
||||
cpu == "znver1" ||
|
||||
cpu == "znver2" ||
|
||||
cpu == "znver3" ||
|
||||
cpu == "arrowlake")
|
||||
cpu == "arrowlake" ||
|
||||
cpu == "arrowlake-s" ||
|
||||
cpu == "lunarlake")
|
||||
{
|
||||
m_use_fma = true;
|
||||
m_use_avx = true;
|
||||
@ -159,7 +161,9 @@ void cpu_translator::initialize(llvm::LLVMContext& context, llvm::ExecutionEngin
|
||||
cpu == "alderlake" ||
|
||||
cpu == "raptorlake" ||
|
||||
cpu == "meteorlake" ||
|
||||
cpu == "arrowlake")
|
||||
cpu == "arrowlake" ||
|
||||
cpu == "arrowlake-s" ||
|
||||
cpu == "lunarlake")
|
||||
{
|
||||
m_use_vnni = true;
|
||||
}
|
||||
@ -170,7 +174,9 @@ void cpu_translator::initialize(llvm::LLVMContext& context, llvm::ExecutionEngin
|
||||
cpu == "alderlake" ||
|
||||
cpu == "raptorlake" ||
|
||||
cpu == "meteorlake" ||
|
||||
cpu == "arrowlake")
|
||||
cpu == "arrowlake" ||
|
||||
cpu == "arrowlake-s" ||
|
||||
cpu == "lunarlake")
|
||||
{
|
||||
m_use_gfni = true;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user