batch_size for cluster calculation #42
-
|
Dear developers, I'm trying to learn the SSCHA code, and I really appreciate your effort for developing and releasing this program. I would like to ask a question about the In count = 0
# Submit in parallel
jobs = [false_id[i : i + self.job_number] for i in range(0, len(false_id), self.job_number)]
for job in jobs:
# Submit only the batch size
if count > self.batch_size:
break
t = threading.Thread(target = compute_single_jobarray, args=(job, ase_calc, ))
t.start()
threads.append(t)
count += 1Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi Jae-Mo Lihm, |
Beta Was this translation helpful? Give feedback.
Hi Jae-Mo Lihm,
You are right. I fix this immediately.
Thanks for the report.
Luckily, it is not a bug that affects the calculation or the results :)
Bests,
Lorenzo