We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab04b0 commit a5d9456Copy full SHA for a5d9456
cusim/culda/bindings.cc
@@ -58,7 +58,7 @@ class CuLDABind {
58
std::pair<float, float> FeedData(py::object& cols, py::object& indptr, py::object& vali, const int num_iters) {
59
int_array _cols(cols);
60
int_array _indptr(indptr);
61
- bool_arrray _vali(vali);
+ bool_array _vali(vali);
62
auto cols_buffer = _cols.request();
63
auto indptr_buffer = _indptr.request();
64
auto vali_buffer = _vali.request();
0 commit comments