Skip to content

Commit

Permalink
Fix braket
Browse files Browse the repository at this point in the history
  • Loading branch information
enp1s0 committed Oct 4, 2023
1 parent e04ffea commit 84b742a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/raft/neighbors/detail/nn_descent.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ GNND<Data_t, Index_t>::GNND(raft::resources const& res, const BuildConfig& build
raft::make_device_matrix<DistData_t, Index_t, raft::row_major>(res, nrow_, DEGREE_ON_DEVICE)},
graph_host_buffer_(nrow_ * DEGREE_ON_DEVICE),
dists_host_buffer_(nrow_ * DEGREE_ON_DEVICE),
d_locks_(raft::make_device_vector<int, Index_t>(res, nrow_)),
d_locks_{raft::make_device_vector<int, Index_t>(res, nrow_)},
h_rev_graph_new_(nrow_ * NUM_SAMPLES),
h_graph_old_(nrow_ * NUM_SAMPLES),
h_rev_graph_old_(nrow_ * NUM_SAMPLES),
Expand Down

0 comments on commit 84b742a

Please sign in to comment.