bug fix
This commit is contained in:
parent
567671c43e
commit
e44fae01a6
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue