Skip to content

Commit

Permalink
Merge pull request #67 from unisa-hpc/fix-median-error
Browse files Browse the repository at this point in the history
Fix `median` benchmark image load
  • Loading branch information
Luigi-Crisci authored Jan 29, 2024
2 parents 95ebde7 + 354479f commit b997ed1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion single-kernel/median.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MedianFilterBench
void setup() {
size = args.problem_size; // input size defined by the user
input.resize(size * size);
load_bitmap_mirrored("../../share/Brommy.bmp", size, input);
load_bitmap_mirrored("../share/Brommy.bmp", size, input);
output.resize(size * size);

input_buf.initialize(args.device_queue, input.data(), s::range<2>(size, size));
Expand Down

0 comments on commit b997ed1

Please sign in to comment.