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

Adding instructions to install from conda and build using CPM [skip-ci] #519

Merged

Conversation

cjnolet
Copy link
Member

@cjnolet cjnolet commented Feb 19, 2022

No description provided.

@cjnolet cjnolet added improvement Improvement / enhancement to an existing function non-breaking Non-breaking change labels Feb 19, 2022
@cjnolet cjnolet changed the title Adding instructions to install from conda and build using CPM Adding instructions to install from conda and build using CPM [skip-ci] Feb 19, 2022
@cjnolet
Copy link
Member Author

cjnolet commented Feb 19, 2022

Adding a quick note to self on the updated example for the new API:

#include <raft/handle.hpp>
#include <raft/mdarray.hpp>
#include <raft/random/make_blobs.hpp>
#include <raft/distance/distance.hpp>

raft::handle_t handle;

int n_samples = 5000;
int n_features = 50;

auto input = make_device_matrix(handle, n_samples, n_features);
auto output = make_device_matrix(handle, n_samples, n_samples);

int n_centers = 5;
float cluster_std = 0.5;
raft::random::make_blobs(handle, input, n_centers, cluster_std);

auto metric = raft::distance::DistanceType::L2SqrtExpanded;
raft::distance::pairwise_distance(handle, input, input, output, metric);

(I guess we need to add mdarray overloads that take the handle directly)

@cjnolet cjnolet requested a review from a team as a code owner February 20, 2022 23:21
Copy link
Member

@dantegd dantegd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall great additions to the documentation

BUILD.md Outdated Show resolved Hide resolved
@cjnolet
Copy link
Member Author

cjnolet commented Feb 22, 2022

@gpucibot merge

@rapids-bot rapids-bot bot merged commit 309c9f2 into rapidsai:branch-22.04 Feb 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
improvement Improvement / enhancement to an existing function non-breaking Non-breaking change
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants