我目前正在尝试同时运行分配给不同内核的多个.py脚本。目前,我有一个执行以下操作的.py脚本:
目标是尽快加快此过程。我有一台配备四个核心的计算机,我想将所有这些用于此应用程序。我在网上看到的所有示例都只是函数,而不是运行py脚本。我想知道你们中是否有人在建立一组工作人员以在多个内核上运行多个脚本方面有任何经验。
我应该在单独的脚本中使用多重处理工具吗?
#############This is where my loop for running and moving the specified py scripts are at#################
def main():
pool = multiprocessing.Pool(processes=4)
pool.apply_async()### Not sure what to do with this. I know it assigns the tasks to the different cores
pool.close()
pool.join()
if __name__ == '__main__':
main()