Skip to content

Commit

Permalink
avoid blurry heatmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Nov 24, 2021
1 parent 75cb6fb commit e7f6322
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/llama/mapping/Heatmap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ set yrange [] reverse
set link x2; set link y2
set ylabel "Cacheline"
set x2label "Byte"
plot $data matrix with image axes x2y1
plot $data matrix with image pixels axes x2y1
)";
return f.str();
}
Expand Down
4 changes: 2 additions & 2 deletions tests/heatmap_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ set yrange [] reverse
set link x2; set link y2
set ylabel "Cacheline"
set x2label "Byte"
plot $data matrix with image axes x2y1
plot $data matrix with image pixels axes x2y1
)";

std::string_view heatmapSingleBlobSoA = R"(#!/usr/bin/gnuplot -p
Expand Down Expand Up @@ -272,6 +272,6 @@ set yrange [] reverse
set link x2; set link y2
set ylabel "Cacheline"
set x2label "Byte"
plot $data matrix with image axes x2y1
plot $data matrix with image pixels axes x2y1
)";
} // namespace

0 comments on commit e7f6322

Please sign in to comment.