From 9f2ff71cbc193fc1544e23b57cb9510e4dded02c Mon Sep 17 00:00:00 2001 From: Yixiao Du Date: Fri, 8 Sep 2023 14:31:16 -0400 Subject: [PATCH] remove the return value of main in csrmv --- benchmarks/mem/csrmv.bril | 5 +---- benchmarks/mem/csrmv.prof | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/benchmarks/mem/csrmv.bril b/benchmarks/mem/csrmv.bril index d49feef3c..98af7c4a0 100644 --- a/benchmarks/mem/csrmv.bril +++ b/benchmarks/mem/csrmv.bril @@ -236,7 +236,7 @@ # main function # ARGS: 50 50 5 -@main(rows: int, cols: int, degree: int): int { +@main(rows: int, cols: int, degree: int){ one: int = const 1; rptr_len: int = add rows one; nnz: int = mul rows degree; @@ -262,7 +262,4 @@ free csr_values; free vec; free res; - - good: int = const 0; - ret good; } diff --git a/benchmarks/mem/csrmv.prof b/benchmarks/mem/csrmv.prof index d3d7d0bc1..c0976f168 100644 --- a/benchmarks/mem/csrmv.prof +++ b/benchmarks/mem/csrmv.prof @@ -1 +1 @@ -total_dyn_inst: 121204 +total_dyn_inst: 121202