This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
zzy34407230
/
mindspore2022
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
22
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
!21621
fix recompute_fuse
Merge pull request
!21621
from lingyunli63/fix_recompute_fuse
tags/v1.5.0-rc1
i-robot
Gitee
4 years ago
parent
0a05954ddb
5ea00fbabc
commit
a5388a5227
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/graph_kernel/model/graph_split.py
+ 1
- 1
mindspore/_extends/graph_kernel/model/graph_split.py
View File
@@ -486,7 +486,7 @@ class GraphSplitByPattern:
cheap_regions = []
for output in outputs:
# tensor should have user other than user_area to be fused
if
output.para_type != Tensor.PARA_OUTPUT and
len(output.to_ops) < 2:
if len(output.to_ops) < 2:
continue
region_ops = []
grow = True
Write
Preview
Loading…
Cancel
Save