mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
SPU ASMJIT: Disable 512 wide spu verification
- Apparantly this crashes every game.
This commit is contained in:
parent
b84e95d768
commit
37383f4217
1 changed files with 2 additions and 2 deletions
|
@ -281,9 +281,9 @@ spu_function_t spu_recompiler::compile(spu_program&& _func)
|
||||||
c->vzeroupper();
|
c->vzeroupper();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (utils::has_avx512() && g_cfg.core.full_width_avx512)
|
else if (utils::has_avx512() && false)
|
||||||
{
|
{
|
||||||
// AVX-512 optimized check using 512-bit registers
|
// AVX-512 optimized check using 512-bit registers (disabled)
|
||||||
words_align = 64;
|
words_align = 64;
|
||||||
|
|
||||||
const u32 starta = start & -64;
|
const u32 starta = start & -64;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue