Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion tests/dense_like.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ npe_arg(a, sparse_double, sparse_float)
npe_arg(b, npe_dense_like(a))
npe_begin_code()

npe_Matrix_b ret1 = b;
npe_Matrix_b ret1 = a * b;

return npe::move(ret1);
npe_end_code()
Expand Down
2 changes: 1 addition & 1 deletion tests/sparse_like.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ npe_arg(a, dense_double, dense_float)
npe_arg(b, npe_sparse_like(a))
npe_begin_code()

npe_Matrix_b ret1 = b;
npe_Matrix_b ret1 = a * b;

return npe::move(ret1);
npe_end_code()
Expand Down