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
!7687
[MSLITE][Develop] fix hashtable_lookup
Merge pull request
!7687
from sunsuodong/fix_hashtable_lookup
tags/v1.1.0
mindspore-ci-bot
Gitee
5 years ago
parent
0fd312f431
13a8fbfeee
commit
430fa23512
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mindspore/lite/src/runtime/kernel/arm/string/hashtable_lookup.cc
+ 1
- 1
mindspore/lite/src/runtime/kernel/arm/string/hashtable_lookup.cc
View File
@@ -62,7 +62,7 @@ int HashtableLookupCPUKernel::Run() {
output_string_pack[i] = null_string_pack;
hits_data[i] = 0;
} else {
output_string_pack[i] = all_string_pack[i];
output_string_pack[i] = all_string_pack[i
ndex
];
hits_data[i] = 1;
}
}
Write
Preview
Loading…
Cancel
Save