Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
removed whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhenneking committed Jul 19, 2017
1 parent 90de10a commit dee3cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/operator/tensor/cast_storage-inl.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ struct FillCsrColIdxAndValsWarpKernel {
WarpScan(temp_storage[warp_lane]).ExclusiveSum(nnz, nnz);
if (j < num_cols) {
if (dns[offset+j] != 0) {
val [k+nnz] = dns[offset+j];
val[k+nnz] = dns[offset+j];
col_idx[k+nnz] = j;
}
}
Expand Down Expand Up @@ -228,7 +228,7 @@ struct FillCsrColIdxAndValsBlockKernel {
BlockScan(temp_storage).ExclusiveSum(nnz, nnz);
if (j < num_cols) {
if (dns[offset+j] != 0) {
val [k+nnz] = dns[offset+j];
val[k+nnz] = dns[offset+j];
col_idx[k+nnz] = j;
}
}
Expand Down

0 comments on commit dee3cbd

Please sign in to comment.