All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: igt-dev@lists.freedesktop.org, Intel-gfx@lists.freedesktop.org
Subject: [Intel-gfx] [PATCH i-g-t] intel_gpu_top: Use actual period when calculating client busyness
Date: Tue, 14 Mar 2023 12:17:40 +0000	[thread overview]
Message-ID: <20230314121740.1195358-1-tvrtko.ursulin@linux.intel.com> (raw)

From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

On a slow machine, or with many processes and/or file descriptors to
parse, the period of the scanning loop can drift significantly from the
assumed value. This results in artificially inflated client busyness
percentages.

To alleviate the issue take some real timestamps and use actual elapsed
time when calculating relative busyness.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 tools/intel_gpu_top.c | 39 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 38 insertions(+), 1 deletion(-)

diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index e13e35b71f4b..af4b350da8e4 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -43,6 +43,7 @@
 #include <sys/types.h>
 #include <unistd.h>
 #include <termios.h>
+#include <time.h>
 #include <sys/sysmacros.h>
 
 #include "igt_perf.h"
@@ -2524,6 +2525,38 @@ static void show_help_screen(void)
 "\n");
 }
 
+static int gettime(struct timespec *ts)
+{
+	memset(ts, 0, sizeof(*ts));
+
+#ifdef CLOCK_MONOTONIC_RAW
+	if (!clock_gettime(CLOCK_MONOTONIC_RAW, ts))
+		return 0;
+#endif
+#ifdef CLOCK_MONOTONIC_COARSE
+	if (!clock_gettime(CLOCK_MONOTONIC_COARSE, ts))
+		return 0;
+#endif
+
+	return clock_gettime(CLOCK_MONOTONIC, ts);
+}
+
+static unsigned long elapsed_us(struct timespec *prev, unsigned int period_us)
+{
+	unsigned long elapsed;
+	struct timespec now;
+
+	if (gettime(&now))
+		return period_us;
+
+	elapsed = ((now.tv_nsec - prev->tv_nsec) / 1000 +
+	           (unsigned long)USEC_PER_SEC * (now.tv_sec - prev->tv_sec));
+
+	*prev = now;
+
+	return elapsed;
+}
+
 int main(int argc, char **argv)
 {
 	unsigned int period_us = DEFAULT_PERIOD_MS * 1000;
@@ -2537,6 +2570,7 @@ int main(int argc, char **argv)
 	char *pmu_device, *opt_device = NULL;
 	struct igt_device_card card;
 	char *codename = NULL;
+	struct timespec ts;
 
 	/* Parse options */
 	while ((ch = getopt(argc, argv, "o:s:d:pcJLlh")) != -1) {
@@ -2690,6 +2724,7 @@ int main(int argc, char **argv)
 
 	pmu_sample(engines);
 	scan_clients(clients, false);
+	gettime(&ts);
 	codename = igt_device_get_pretty_name(&card, false);
 
 	if (output_mode == JSON)
@@ -2698,6 +2733,7 @@ int main(int argc, char **argv)
 	while (!stop_top) {
 		struct clients *disp_clients;
 		bool consumed = false;
+		unsigned int scan_us;
 		int j, lines = 0;
 		struct winsize ws;
 		struct client *c;
@@ -2720,6 +2756,7 @@ int main(int argc, char **argv)
 		t = (double)(engines->ts.cur - engines->ts.prev) / 1e9;
 
 		disp_clients = scan_clients(clients, true);
+		scan_us = elapsed_us(&ts, period_us);
 
 		if (stop_top)
 			break;
@@ -2757,7 +2794,7 @@ int main(int argc, char **argv)
 
 					lines = print_client(c, engines, t,
 							     lines, con_w,
-							     con_h, period_us,
+							     con_h, scan_us,
 							     &class_w);
 				}
 
-- 
2.37.2


WARNING: multiple messages have this Message-ID (diff)
From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: igt-dev@lists.freedesktop.org, Intel-gfx@lists.freedesktop.org
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Subject: [igt-dev] [PATCH i-g-t] intel_gpu_top: Use actual period when calculating client busyness
Date: Tue, 14 Mar 2023 12:17:40 +0000	[thread overview]
Message-ID: <20230314121740.1195358-1-tvrtko.ursulin@linux.intel.com> (raw)

From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

On a slow machine, or with many processes and/or file descriptors to
parse, the period of the scanning loop can drift significantly from the
assumed value. This results in artificially inflated client busyness
percentages.

To alleviate the issue take some real timestamps and use actual elapsed
time when calculating relative busyness.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 tools/intel_gpu_top.c | 39 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 38 insertions(+), 1 deletion(-)

diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index e13e35b71f4b..af4b350da8e4 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -43,6 +43,7 @@
 #include <sys/types.h>
 #include <unistd.h>
 #include <termios.h>
+#include <time.h>
 #include <sys/sysmacros.h>
 
 #include "igt_perf.h"
@@ -2524,6 +2525,38 @@ static void show_help_screen(void)
 "\n");
 }
 
+static int gettime(struct timespec *ts)
+{
+	memset(ts, 0, sizeof(*ts));
+
+#ifdef CLOCK_MONOTONIC_RAW
+	if (!clock_gettime(CLOCK_MONOTONIC_RAW, ts))
+		return 0;
+#endif
+#ifdef CLOCK_MONOTONIC_COARSE
+	if (!clock_gettime(CLOCK_MONOTONIC_COARSE, ts))
+		return 0;
+#endif
+
+	return clock_gettime(CLOCK_MONOTONIC, ts);
+}
+
+static unsigned long elapsed_us(struct timespec *prev, unsigned int period_us)
+{
+	unsigned long elapsed;
+	struct timespec now;
+
+	if (gettime(&now))
+		return period_us;
+
+	elapsed = ((now.tv_nsec - prev->tv_nsec) / 1000 +
+	           (unsigned long)USEC_PER_SEC * (now.tv_sec - prev->tv_sec));
+
+	*prev = now;
+
+	return elapsed;
+}
+
 int main(int argc, char **argv)
 {
 	unsigned int period_us = DEFAULT_PERIOD_MS * 1000;
@@ -2537,6 +2570,7 @@ int main(int argc, char **argv)
 	char *pmu_device, *opt_device = NULL;
 	struct igt_device_card card;
 	char *codename = NULL;
+	struct timespec ts;
 
 	/* Parse options */
 	while ((ch = getopt(argc, argv, "o:s:d:pcJLlh")) != -1) {
@@ -2690,6 +2724,7 @@ int main(int argc, char **argv)
 
 	pmu_sample(engines);
 	scan_clients(clients, false);
+	gettime(&ts);
 	codename = igt_device_get_pretty_name(&card, false);
 
 	if (output_mode == JSON)
@@ -2698,6 +2733,7 @@ int main(int argc, char **argv)
 	while (!stop_top) {
 		struct clients *disp_clients;
 		bool consumed = false;
+		unsigned int scan_us;
 		int j, lines = 0;
 		struct winsize ws;
 		struct client *c;
@@ -2720,6 +2756,7 @@ int main(int argc, char **argv)
 		t = (double)(engines->ts.cur - engines->ts.prev) / 1e9;
 
 		disp_clients = scan_clients(clients, true);
+		scan_us = elapsed_us(&ts, period_us);
 
 		if (stop_top)
 			break;
@@ -2757,7 +2794,7 @@ int main(int argc, char **argv)
 
 					lines = print_client(c, engines, t,
 							     lines, con_w,
-							     con_h, period_us,
+							     con_h, scan_us,
 							     &class_w);
 				}
 
-- 
2.37.2

             reply	other threads:[~2023-03-14 12:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-14 12:17 Tvrtko Ursulin [this message]
2023-03-14 12:17 ` [igt-dev] [PATCH i-g-t] intel_gpu_top: Use actual period when calculating client busyness Tvrtko Ursulin
2023-03-14 14:42 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-03-14 18:25 ` [Intel-gfx] [PATCH i-g-t] " Umesh Nerlige Ramappa
2023-03-14 18:25   ` [igt-dev] " Umesh Nerlige Ramappa
2023-03-15  9:20   ` Tvrtko Ursulin
2023-03-15  9:20     ` [igt-dev] " Tvrtko Ursulin
2023-03-15 19:56     ` Umesh Nerlige Ramappa
2023-03-15 19:56       ` [igt-dev] " Umesh Nerlige Ramappa
2023-03-16  9:04       ` Tvrtko Ursulin
2023-03-16  9:04         ` [igt-dev] " Tvrtko Ursulin
2023-03-15 18:46 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230314121740.1195358-1-tvrtko.ursulin@linux.intel.com \
    --to=tvrtko.ursulin@linux.intel.com \
    --cc=Intel-gfx@lists.freedesktop.org \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.