I have a for loop, that takes for ever to calculate so I want to use multicore for the loop.
The issue that I am facing is that the for loop looks like this:
for index,FB_single in tqdm(enumerate(FB), desc="Progress"):
So the for loop is highly dpendant on the index.
I couldn’t figure out a way to use multicore. Maybe you can.
Dont hesitate to ask questions if something isnt clear.