#log.warning("You specified an illegal number of CPU cores ({}). Only using 1 instead...".format(conf["num_cpus"]))
num_cpus=1
ifnum_cpus==-1:
num_cpus=mp.cpu_count()
ifnum_cpus>mp.cpu_count():
num_cpus=mp.cpu_count()
#log.warning("You have specified more CPU cores than are available ({}). Using maximum instead...".format(conf["num_cpus"]))
ifnum_cpus==1:
#log.info("Using 1 core.")
ifmp.cpu_count()>1:
pass#log.info("Your CPU has {} cores but you are using only 1. Consider using more with the '--cores'. You can use '--cores -1' to utilize all available cores.".format(mp.cpu_count()))