Hi, everyone
I have a question.
When I use multiprocessing.Pool to torch.onnx.export, it is slower than before.
Has anyone ever met this question? What’s the solution?
The code example is as follows:
for coding_value in list1:
pool.apply_async(process_one,args=(coding_value,))
pool.close()
pool.join()