nksaunders / giants

Finding Giant Planets in TESS FFIs
2 stars 3 forks source link

multiprocessing: how to implement? #13

Open skgrunblatt opened 4 years ago

skgrunblatt commented 4 years ago

should i write something with Pool mapping or will Dan's parallel package work?

e.g. from multiprocessing import Pool import giants as g target = g.Giant()

p = Pool(8)

p.map(target.plot, [targetlist])

not convinced this actually speeds anything up but it should run!