Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose metric kind from index_dense_gt #537

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/usearch/index_dense.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,7 @@ class index_dense_gt {
void change_metric(metric_t metric) { metric_ = std::move(metric); }

scalar_kind_t scalar_kind() const { return metric_.scalar_kind(); }
metric_kind_t metric_kind() const { return metric_.metric_kind(); }
std::size_t bytes_per_vector() const { return metric_.bytes_per_vector(); }
std::size_t scalar_words() const { return metric_.scalar_words(); }
std::size_t dimensions() const { return metric_.dimensions(); }
Expand Down
Loading