diff --git a/pipeline.py b/pipeline.py index ae6c2b8..56b742f 100644 --- a/pipeline.py +++ b/pipeline.py @@ -617,7 +617,7 @@ if __name__ == '__main__' : for index in GPU_CHIPS : 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.start() jobs.append(job)