No matter how many cores I choose, it always runs on only one core.
It reflects on the Task Manager as well as the "current rate" metrics as well.
I guess that we need to use Process to achieve it?
from multiprocessing import cpu_count, Process
Reference: https://stackoverflow.com/questions/22700164/python-running-multiple-processes-simultaneously
No matter how many cores I choose, it always runs on only one core.
It reflects on the Task Manager as well as the "current rate" metrics as well.
I guess that we need to use
Processto achieve it?from multiprocessing import cpu_count, ProcessReference: https://stackoverflow.com/questions/22700164/python-running-multiple-processes-simultaneously