Closed kaxlabs closed 1 month ago
In data_processing.py
file, there are 2 lines that look like this: with Pool(cpu_count()) as pool:
.
If you change the part from cpu_count()
to cpu_count() / 2
then the program will use half of your available CPU threads.
These are the 2 mentioned lines:
Try it out.
Any way to add limits to how many resources are utilized during the sorting? My computer slows to nearly a stop while trying to use this.