Hi community,
I run Modeller-10.0 and when I see the system process only use a 1 CPU, and the others are not using it. I want to run modeller and use 12 threads then have mi CPU Ryzen 5 3600.
This is my script to run:
#-- Run Modelling
#-- Setup MODELLER environment
j = job()
j.append(local_slave())
j.append(local_slave())
j.append(local_slave())
if not cmd.serial and cmd.num_jobs:
for req_job in range(cmd.num_jobs - 1):
j.append(local_slave())
Thanks.