Skip to content

Commit

Permalink
[oneMKL][Sparse BLAS] Reorder CSR matrix arrays in CSR format example
Browse files Browse the repository at this point in the history
  • Loading branch information
gajanan-choudhary committed Jan 8, 2024
1 parent 36780f0 commit d9249ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ A sparse matrix can be represented in a CSR format in a following way (assuming
+------------+------------------------------------------------------------+
| index | 0 |
+------------+------------+-----------+-----------+-----------+-----------+
| val | 1 | 2 | -1 | 4 | 3 |
| row_ptr | 0 | 2 | 4 | 5 | |
+------------+------------+-----------+-----------+-----------+-----------+
| col_ind | 0 | 2 | 1 | 2 | 0 |
+------------+------------+-----------+-----------+-----------+-----------+
| row_ptr | 0 | 2 | 4 | 5 | |
| val | 1 | 2 | -1 | 4 | 3 |
+------------+------------+-----------+-----------+-----------+-----------+


Expand Down

0 comments on commit d9249ed

Please sign in to comment.