!6999 Increase the max compiling process of tbe to 24

Merge pull request !6999 from Kang/tbe_opt
This commit is contained in:
mindspore-ci-bot 2020-09-29 14:17:58 +08:00 committed by Gitee
commit 41c61e4516
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class TbeProcess:
def __init__(self):
self.__processe_num = multiprocessing.cpu_count()
# max_processes_num: Set the maximum number of concurrent processes for compiler
max_processes_num = 16
max_processes_num = 24
if self.__processe_num > max_processes_num:
self.__processe_num = max_processes_num
self.__pool = None