This commit is contained in:
2022-07-01 03:17:29 +08:00
parent 70af7fdeeb
commit 15903de04c
10 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import numpy as np
import guan
cpus = 4
parameter_array_all = np.arange(0, 17, 1)
for task_index in range(cpus):
parameter_array = guan.preprocess_for_parallel_calculations(parameter_array_all, cpus, task_index)
print(parameter_array)
print()