I am working in parallelization in python.. and I have big calculation need to be parallel. at first I have big for loop for (1000 particles for example) so my process was not independent ,and I need independent process to make it parallel. so I divided the for loop in 2 FOR loops has calculate 500 ,500 particles..and I need to run this two independent loop parallel on two different cores(processors)...so is that possible? if yes then how? please share some guidance..
for i in particle1
some processes
......
print ( something)
2nd loop
for i in particles2
someprocess....
print (something1)
and now i want this two different process in combine
so ...
print (something + something1)
this i am exatclty want to do.. please share idea..