This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
!6884
increase tbe compile max process number from 16 to 24
Merge pull request
!6884
from wenchunjiang/increase_tbe_compile_process
tags/v1.1.0
mindspore-ci-bot
Gitee
5 years ago
parent
2a41f76f4f
1a407db3fd
commit
085f8bc622
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mindspore/_extends/parallel_compile/tbe_compiler/tbe_process.py
+ 1
- 1
mindspore/_extends/parallel_compile/tbe_compiler/tbe_process.py
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
Write
Preview
Loading…
Cancel
Save