!7687 [MSLITE][Develop] fix hashtable_lookup

Merge pull request !7687 from sunsuodong/fix_hashtable_lookup
pull/7687/MERGE
mindspore-ci-bot 4 years ago committed by Gitee
commit 430fa23512

@ -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