Skip to content

Commit

Permalink
Test for performance regression
Browse files Browse the repository at this point in the history
It's not even the thread that does the compilation work, but its execution is more important now.
  • Loading branch information
elad335 committed Jun 26, 2023
1 parent 6b9363f commit 9e04387
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions rpcs3/Emu/Cell/PPUThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3148,9 +3148,6 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
#ifdef __APPLE__
pthread_jit_write_protect_np(false);
#endif
// Set low priority
thread_ctrl::scoped_priority low_prio(-1);

for (usz func_i = fnext++; func_i < file_queue.size(); func_i = fnext++, g_progr_fdone++)
{
if (Emu.IsStopped())
Expand Down Expand Up @@ -3251,8 +3248,6 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
#ifdef __APPLE__
pthread_jit_write_protect_np(false);
#endif
// Set low priority
thread_ctrl::scoped_priority low_prio(-1);

auto slice = possible_exec_file_paths.pop_all();

Expand Down

0 comments on commit 9e04387

Please sign in to comment.