[igt-dev] [PATCH i-g-t v3 16/16] intel_gpu_top: Add gt specific values to header in interactive mode
Umesh Nerlige Ramappa
umesh.nerlige.ramappa at intel.com
Fri May 19 15:46:50 UTC 2023
If -p options is specified in INTERACTIVE mode, show the gt specific
values.
v2: Reformat GT info for INTERACTIVE mode (Tvrtko)
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa at intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
---
tools/intel_gpu_top.c | 33 +++++++++++++++++++++++++--------
1 file changed, 25 insertions(+), 8 deletions(-)
diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index 11ef4c0e2..da72c0166 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -1570,14 +1570,31 @@ print_header(const struct igt_device_card *card,
lines = print_header_token(" @ ", lines, con_w, con_h, &rem,
"%s", card->card);
- lines = print_header_token(" - ", lines, con_w, con_h, &rem,
- "%s/%s MHz",
- freq_items[1].buf,
- freq_items[0].buf);
-
- lines = print_header_token("; ", lines, con_w, con_h, &rem,
- "%s%% RC6",
- rc6_items[0].buf);
+ if (class_view || engines->num_gts == 1) {
+ lines = print_header_token(" - ", lines, con_w, con_h, &rem,
+ "%s/%s MHz",
+ freq_items[1].buf,
+ freq_items[0].buf);
+
+ lines = print_header_token("; ", lines, con_w, con_h, &rem,
+ "%s%% RC6",
+ rc6_items[0].buf);
+ } else {
+ for (i = 0; i < engines->num_gts; i++) {
+ const char *cont = !i ? " - ": "; ";
+
+ lines = print_header_token(cont, lines, con_w, con_h, &rem,
+ "%s/%s MHz GT%d",
+ freq_items_gt[i * 4 + 1].buf,
+ freq_items_gt[i * 4 + 0].buf,
+ i);
+
+ lines = print_header_token("; ", lines, con_w, con_h, &rem,
+ "%s%% RC6 GT%d",
+ rc6_items_gt[i * 3].buf,
+ i);
+ }
+ }
if (engines->r_gpu.present) {
lines = print_header_token("; ", lines, con_w, con_h,
--
2.36.1
More information about the igt-dev
mailing list