Unverified Commit 2abbcad2 authored by Jin Hai's avatar Jin Hai Committed by GitHub
Browse files

Merge pull request #398 from yhmo/0.6.0

#397 sdk_simple return incorrect result
parents 00a21da4 3eefd550
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@ Please mark all change in change log and use the ticket from JIRA.
- \#340 - Test cases run failed on 0.6.0
- \#353 - Rename config.h.in to version.h.in
- \#374 - sdk_simple return empty result
- \#397 - sdk_simple return incorrect result

## Feature
- \#12 - Pure CPU version for Milvus
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ Utils::PrintSearchResult(const std::vector<std::pair<int64_t, milvus::RowRecord>
        index++;
        std::cout << "No." << index << " vector " << search_id << " top " << topk << " search result:" << std::endl;
        for (size_t j = 0; j < topk; j++) {
            size_t idx = i * nq + j;
            size_t idx = i * topk + j;
            std::cout << "\t" << topk_query_result.ids[idx] << "\t" << topk_query_result.distances[idx] << std::endl;
        }
    }