I am trying to utilize all cores of CPU, for NumPy, I am able to use all cores, but when I am performing some operation in pandas, then again it using only one core of CPU. I have tried to set the max thread and other params, but nothin working foe me.
eg,
def a(x):
#### # performing a lot of operations and checks.
## df.groupby(column_A).apply(a).reset_index()
when the system is executing Numpy operation, that time CPU is utilization most of the cores, but when it comes to pandas everything is running on a single core.