DaYu
Results
1
comments of
DaYu
We've set the log_to_driver to False. ``` num_cpus = min(cpu_count(), 64 - 3) num_gpus = 0 log_to_driver = False rayparam = [num_cpus, num_gpus, log_to_driver] ray.init(num_cpus=rayparam[0], num_gpus=rayparam[1], log_to_driver=rayparam[2]) ``` If we...