mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-02-27 01:54:21 +01:00
ARL wasn't using FMA/VNNI/GFNI
This commit is contained in:
parent
620997c193
commit
8b9c9f677a
|
|
@ -135,7 +135,8 @@ void cpu_translator::initialize(llvm::LLVMContext& context, llvm::ExecutionEngin
|
|||
cpu == "bdver4" ||
|
||||
cpu == "znver1" ||
|
||||
cpu == "znver2" ||
|
||||
cpu == "znver3")
|
||||
cpu == "znver3" ||
|
||||
cpu == "arrowlake")
|
||||
{
|
||||
m_use_fma = true;
|
||||
m_use_avx = true;
|
||||
|
|
@ -157,7 +158,8 @@ void cpu_translator::initialize(llvm::LLVMContext& context, llvm::ExecutionEngin
|
|||
cpu == "cooperlake" ||
|
||||
cpu == "alderlake" ||
|
||||
cpu == "raptorlake" ||
|
||||
cpu == "meteorlake")
|
||||
cpu == "meteorlake" ||
|
||||
cpu == "arrowlake")
|
||||
{
|
||||
m_use_vnni = true;
|
||||
}
|
||||
|
|
@ -167,7 +169,8 @@ void cpu_translator::initialize(llvm::LLVMContext& context, llvm::ExecutionEngin
|
|||
cpu == "gracemont" ||
|
||||
cpu == "alderlake" ||
|
||||
cpu == "raptorlake" ||
|
||||
cpu == "meteorlake")
|
||||
cpu == "meteorlake" ||
|
||||
cpu == "arrowlake")
|
||||
{
|
||||
m_use_gfni = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue