Skip to content

Commit a5d9456

Browse files
committed
fix typo and compile succeed
1 parent bab04b0 commit a5d9456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cusim/culda/bindings.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class CuLDABind {
5858
std::pair<float, float> FeedData(py::object& cols, py::object& indptr, py::object& vali, const int num_iters) {
5959
int_array _cols(cols);
6060
int_array _indptr(indptr);
61-
bool_arrray _vali(vali);
61+
bool_array _vali(vali);
6262
auto cols_buffer = _cols.request();
6363
auto indptr_buffer = _indptr.request();
6464
auto vali_buffer = _vali.request();

0 commit comments

Comments
 (0)