diff options
author | intheRain07 <72262221+intheRain07@users.noreply.github.com> | 2021-11-16 20:22:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 20:22:14 +0800 |
commit | d76fd70ffbe68b80851c7edf2d82c37fd169ebc9 (patch) | |
tree | 8f9754e548803cde1ee2836091d52c8603651627 /GEMV | |
parent | 017ce757c67c6e8e0900b46b683570ad63ca606b (diff) |
gemv_bug_fix_2.1
Diffstat (limited to 'GEMV')
-rw-r--r-- | GEMV/dpu/task.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GEMV/dpu/task.c b/GEMV/dpu/task.c index 4c4e731..0226437 100644 --- a/GEMV/dpu/task.c +++ b/GEMV/dpu/task.c @@ -112,7 +112,7 @@ int main() { // for(unsigned int pos = 0; pos < element_per_cacheC && i + pos < nr_rows; pos++){ for(unsigned int pos = 0; pos < element_per_cacheC; pos++){ if(i + pos >= nr_rows){ - printf("id: %d, nrows: %d, error\n", tasklet_id, nrows); + // printf("id: %d, nrows: %d, error\n", tasklet_id, nrows); break; } |