warp.config.load_module_max_workers#
- warp.config.load_module_max_workers: int | None = 0#
Default number of worker threads for compiling and loading modules in parallel.
For
wp.load_module()andwp.force_load(), if themax_workersparameter is not specified, the default number of worker threads is determined by this setting.0means serial loading. IfNone, Warp determines the behavior (currently equal tomin(os.cpu_count(), 4)).