diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-17 09:32:10 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-17 09:32:10 +0100 |
commit | b4d38f56de51e5ac7c2c813b420e9f6d42abc2e6 (patch) | |
tree | 87c0fc0868be1cf0c13f465d991b07d73e3f9059 | |
parent | 4330681ffcdee2d188fc987b70dad50df79bd018 (diff) |
SpMV host: Add missing \n
-rw-r--r-- | SpMV/host/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SpMV/host/app.c b/SpMV/host/app.c index fe9c751..be9ee37 100644 --- a/SpMV/host/app.c +++ b/SpMV/host/app.c @@ -232,7 +232,7 @@ int main(int argc, char** argv) { // coomatrix / csrmatrix use uint32_t indexes and float values, so all 32bit csrMatrix.numNonzeros / (dpuTime * 1e6), csrMatrix.numNonzeros / ((allocTime + loadTime + writeTime + dpuTime + readTime + freeTime) * 1e6)); - printf(" throughput_upmem_wxr_MOpps=%f throughput_upmem_lwxr_MOpps=%f throughput_upmem_alwxr_MOpps=%f", + printf(" throughput_upmem_wxr_MOpps=%f throughput_upmem_lwxr_MOpps=%f throughput_upmem_alwxr_MOpps=%f\n", csrMatrix.numNonzeros / ((writeTime + dpuTime + readTime) * 1e6), csrMatrix.numNonzeros / ((loadTime + writeTime + dpuTime + readTime) * 1e6), csrMatrix.numNonzeros / ((allocTime + loadTime + writeTime + dpuTime + readTime) * 1e6)); |