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
enable reduce precision support int64 to int32
tags/v1.1.0
liubuyu
5 years ago
parent
859e704644
commit
b0837d1137
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
mindspore/ccsrc/runtime/device/ascend/kernel_select_ascend.cc
+ 6
- 0
mindspore/ccsrc/runtime/device/ascend/kernel_select_ascend.cc
View File
@@ -179,6 +179,12 @@ void AddSupportMixedPrecisionDataTypeIndex(TypeId data_type, std::vector<int> *s
case kNumberTypeFloat:
index = 1;
break;
case kNumberTypeInt32:
index = 0;
break;
case kNumberTypeInt64:
index = 1;
break;
default:
break;
}
Write
Preview
Loading…
Cancel
Save