diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-17 09:34:47 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-17 09:34:47 +0100 |
commit | 24dea071574167bcad2d553f6b6bc24f40ccbb48 (patch) | |
tree | fb21b3c4b855e09f4a79b4c1bfab1c7f4966cc97 /SpMV/support/common.h | |
parent | b4d38f56de51e5ac7c2c813b420e9f6d42abc2e6 (diff) |
SpMV: indent -linux
Diffstat (limited to 'SpMV/support/common.h')
-rw-r--r-- | SpMV/support/common.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/SpMV/support/common.h b/SpMV/support/common.h index 58fede8..6118814 100644 --- a/SpMV/support/common.h +++ b/SpMV/support/common.h @@ -8,18 +8,17 @@ #define ROUND_UP_TO_MULTIPLE_OF_8(x) ((((x) + 7)/8)*8) struct DPUParams { - uint32_t dpuNumRows; /* Number of rows assigned to the DPU */ - uint32_t dpuRowPtrsOffset; /* Offset of the row pointers */ - uint32_t dpuRowPtrs_m; - uint32_t dpuNonzeros_m; - uint32_t dpuInVector_m; - uint32_t dpuOutVector_m; + uint32_t dpuNumRows; /* Number of rows assigned to the DPU */ + uint32_t dpuRowPtrsOffset; /* Offset of the row pointers */ + uint32_t dpuRowPtrs_m; + uint32_t dpuNonzeros_m; + uint32_t dpuInVector_m; + uint32_t dpuOutVector_m; }; struct Nonzero { - uint32_t col; - float value; + uint32_t col; + float value; }; #endif - |