This commit is contained in:
Steve Nyemba 2021-04-13 17:46:24 -05:00
parent 567671c43e
commit e44fae01a6
1 changed files with 1 additions and 1 deletions

View File

@ -617,7 +617,7 @@ if __name__ == '__main__' :
for index in GPU_CHIPS : for index in GPU_CHIPS :
publisher = lambda _params: ( Components() ).shuffle(_params) publisher = lambda _params: ( Components() ).shuffle(_params)
job = Process (target = publisher,args=( dict(args))) job = Process (target = publisher,args=( args,))
job.name = 'Shuffler #' + str(index) job.name = 'Shuffler #' + str(index)
job.start() job.start()
jobs.append(job) jobs.append(job)