Skip to content

Commit

Permalink
clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
ntrost57 committed Jan 30, 2019
1 parent a14876a commit ed675e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/src/level2/coomv_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ static __device__ void coomvn_general_wf_reduce(rocsparse_int nnz,
if(idx < nnz)
{
row = __builtin_nontemporal_load(coo_row_ind + idx) - idx_base;
val = alpha * __builtin_nontemporal_load(coo_val + idx) * __ldg(x + __builtin_nontemporal_load(coo_col_ind + idx) - idx_base);
val = alpha * __builtin_nontemporal_load(coo_val + idx) *
__ldg(x + __builtin_nontemporal_load(coo_col_ind + idx) - idx_base);
}
else
{
Expand Down

0 comments on commit ed675e0

Please sign in to comment.