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
commit
430fa23512
1 changed files with 1 additions and 1 deletions
  1. +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[index];
hits_data[i] = 1;
}
}


Loading…
Cancel
Save