Skip to content

Commit

Permalink
use int32 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
JayjeetAtGithub committed Nov 15, 2024
1 parent ec6bb80 commit a95f5bb
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions avs_example_perf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@ int main(int argc, char **argv) {
auto dur_ms = std::chrono::duration_cast<std::chrono::milliseconds>(e-s).count();
std::cout << "Duration (L2 vanilla): " << dur_ms << std::endl;

s = std::chrono::high_resolution_clock::now();
knn_index->search_l2_amx_perf(queries, top_k);
e = std::chrono::high_resolution_clock::now();
dur_ms = std::chrono::duration_cast<std::chrono::milliseconds>(e-s).count();
std::cout << "Duration (L2 AMX): " << dur_ms << std::endl;

s = std::chrono::high_resolution_clock::now();
knn_index->search_ip_vanilla_perf(queries, top_k);
e = std::chrono::high_resolution_clock::now();
Expand Down

0 comments on commit a95f5bb

Please sign in to comment.