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
fix matmul quantization bug
tags/v1.2.0-rc1
xutianchun
4 years ago
parent
142299acb2
commit
4dabe2c80b
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
mindspore/lite/tools/converter/quantizer/weight_quantizer.cc
+ 2
- 2
mindspore/lite/tools/converter/quantizer/weight_quantizer.cc
View File
@@ -159,8 +159,8 @@ STATUS WeightQuantizer::DoMulQuantize(CNodePtr cnode) {
}
if (param_value == nullptr) {
MS_LOG(
ERROR) << "
No valid input param node !";
return RET_
ERROR
;
MS_LOG(
WARNING) << cnode->fullname_with_scope() << "
No valid input param node !";
return RET_
OK
;
}
auto primitive_c = GetValueNode<std::shared_ptr<PrimitiveC>>(cnode->input(0));
Write
Preview
Loading…
Cancel
Save