* [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement
@ 2023-01-19 3:43 Ashutosh Dixit
0 siblings, 0 replies; 7+ messages in thread
From: Ashutosh Dixit @ 2023-01-19 3:43 UTC (permalink / raw)
To: igt-dev
In several instances (e.g. when investigating GPU power limits) it is very
useful to be able to measure GPU power easily. Since we already have all
ingredients for doing so, add a tool to measure Intel GPU power when idle
and power under load.
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tools/intel_gpu_power.c | 60 +++++++++++++++++++++++++++++++++++++++++
tools/meson.build | 5 ++++
2 files changed, 65 insertions(+)
create mode 100644 tools/intel_gpu_power.c
diff --git a/tools/intel_gpu_power.c b/tools/intel_gpu_power.c
new file mode 100644
index 00000000000..ae5285e1a85
--- /dev/null
+++ b/tools/intel_gpu_power.c
@@ -0,0 +1,60 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#include "igt.h"
+#include "i915/gem.h"
+#include "igt_power.h"
+
+IGT_TEST_DESCRIPTION("Intel gpu power measurement");
+
+static void measure_power(int i915, const char *domain, bool load)
+{
+ const intel_ctx_t *ctx = intel_ctx_create_all_physical(i915);
+ struct power_sample sample[2];
+ int sleep_duration_sec = 2;
+ struct igt_power pwr;
+ igt_spin_t *spin;
+
+ gem_quiescent_gpu(i915);
+ if (load) {
+ spin = igt_spin_new(i915, .ctx = ctx, .engine = ALL_ENGINES,
+ .flags = IGT_SPIN_POLL_RUN);
+ /* Wait till at least one spinner starts */
+ igt_spin_busywait_until_started(spin);
+ }
+
+ igt_require(!igt_power_open(i915, &pwr, domain));
+ igt_power_get_energy(&pwr, &sample[0]);
+ usleep(sleep_duration_sec * USEC_PER_SEC);
+ igt_power_get_energy(&pwr, &sample[1]);
+ igt_info("Measured power: %g mW\n", igt_power_get_mW(&pwr, &sample[0], &sample[1]));
+
+ igt_power_close(&pwr);
+ igt_free_spins(i915);
+ intel_ctx_destroy(i915, ctx);
+}
+
+igt_main
+{
+ int i915;
+
+ igt_fixture {
+ i915 = drm_open_driver_master(DRIVER_INTEL);
+ }
+
+ igt_describe("Measure idle gpu power");
+ igt_subtest("idle") {
+ measure_power(i915, "gpu", false);
+ }
+
+ igt_describe("Measure gpu power with load");
+ igt_subtest("busy") {
+ measure_power(i915, "gpu", true);
+ }
+
+ igt_fixture {
+ close(i915);
+ }
+}
diff --git a/tools/meson.build b/tools/meson.build
index d2defec8703..e0058940ce0 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -84,6 +84,11 @@ install_data('intel_gpu_abrt', install_dir : bindir)
install_subdir('registers', install_dir : datadir)
+executable('intel_gpu_power', 'intel_gpu_power.c',
+ install : true,
+ install_rpath : bindir_rpathdir,
+ dependencies : [lib_igt,cairo])
+
executable('intel_gpu_top', 'intel_gpu_top.c',
install : true,
install_rpath : bindir_rpathdir,
--
2.38.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement
@ 2023-01-19 5:01 Ashutosh Dixit
0 siblings, 0 replies; 7+ messages in thread
From: Ashutosh Dixit @ 2023-01-19 5:01 UTC (permalink / raw)
To: igt-dev; +Cc: Badal Nilawar
In several instances (e.g. when investigating GPU power limits) it is very
useful to be able to measure GPU power easily. Since we already have all
ingredients for doing so, add a tool to measure Intel GPU power when idle
and power under load.
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tools/intel_gpu_power.c | 73 +++++++++++++++++++++++++++++++++++++++++
tools/meson.build | 1 +
2 files changed, 74 insertions(+)
create mode 100644 tools/intel_gpu_power.c
diff --git a/tools/intel_gpu_power.c b/tools/intel_gpu_power.c
new file mode 100644
index 00000000000..3f73e10bf60
--- /dev/null
+++ b/tools/intel_gpu_power.c
@@ -0,0 +1,73 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#include "igt.h"
+#include "i915/gem.h"
+#include "igt_power.h"
+
+static int measure_power(int i915, const char *domain, bool load)
+{
+ const intel_ctx_t *ctx = intel_ctx_create_all_physical(i915);
+ int ret, sleep_duration_sec = 2;
+ struct power_sample sample[2];
+ struct igt_power pwr;
+ igt_spin_t *spin;
+
+ gem_quiescent_gpu(i915);
+ if (load) {
+ spin = igt_spin_new(i915, .ctx = ctx, .engine = ALL_ENGINES,
+ .flags = IGT_SPIN_POLL_RUN);
+ /* Wait till at least one spinner starts */
+ igt_spin_busywait_until_started(spin);
+ }
+
+ ret = igt_power_open(i915, &pwr, domain);
+ if (ret)
+ return ret;
+ igt_power_get_energy(&pwr, &sample[0]);
+ usleep(sleep_duration_sec * USEC_PER_SEC);
+ igt_power_get_energy(&pwr, &sample[1]);
+ igt_info("Measured power: %g mW\n", igt_power_get_mW(&pwr, &sample[0], &sample[1]));
+
+ igt_power_close(&pwr);
+ igt_free_spins(i915);
+ intel_ctx_destroy(i915, ctx);
+
+ return 0;
+}
+
+static void usage(const char *name)
+{
+ igt_info("Usage: %s [options]\n", name);
+ igt_info("-i/--idle Measure idle power\n");
+ igt_info("-b/--busy Measure power under load\n");
+}
+
+int main(int argc, char *argv[])
+{
+ int i915 = drm_open_driver_master(DRIVER_INTEL);
+ static struct option long_options[] = {
+ {"idle", 0, 0, 'i'},
+ {"busy", 0, 0, 'b'},
+ { 0, 0, 0, 0 }
+ };
+ int opt = getopt_long(argc, argv, "ib", long_options, NULL);
+ int ret = 0;
+
+ switch (opt) {
+ case 'i':
+ ret = measure_power(i915, "gpu", false);
+ break;
+ case 'b':
+ ret = measure_power(i915, "gpu", true);
+ break;
+ default:
+ usage(argv[0]);
+ break;
+ }
+
+ close(i915);
+ return ret;
+}
diff --git a/tools/meson.build b/tools/meson.build
index d2defec8703..4bbbd993cac 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -22,6 +22,7 @@ tools_progs = [
'intel_error_decode',
'intel_forcewaked',
'intel_gpu_frequency',
+ 'intel_gpu_power',
'intel_firmware_decode',
'intel_framebuffer_dump',
'intel_gpu_time',
--
2.38.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement
@ 2023-01-20 16:38 Ashutosh Dixit
2023-01-20 17:59 ` [igt-dev] ✓ Fi.CI.BAT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3) Patchwork
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Ashutosh Dixit @ 2023-01-20 16:38 UTC (permalink / raw)
To: igt-dev; +Cc: Badal Nilawar
In several instances (e.g. when investigating GPU power limits) it is very
useful to be able to measure GPU power easily. Since we already have all
ingredients for doing so, add a tool to measure Intel GPU power when idle
and power under load.
v2: Use softpin/allocator (Riana)
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tools/intel_gpu_power.c | 76 +++++++++++++++++++++++++++++++++++++++++
tools/meson.build | 1 +
2 files changed, 77 insertions(+)
create mode 100644 tools/intel_gpu_power.c
diff --git a/tools/intel_gpu_power.c b/tools/intel_gpu_power.c
new file mode 100644
index 00000000000..d9e71581707
--- /dev/null
+++ b/tools/intel_gpu_power.c
@@ -0,0 +1,76 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#include "igt.h"
+#include "i915/gem.h"
+#include "igt_power.h"
+
+static int measure_power(int i915, const char *domain, bool load)
+{
+ const intel_ctx_t *ctx = intel_ctx_create_all_physical(i915);
+ uint64_t ahnd = get_reloc_ahnd(i915, ctx->id);
+ int ret, sleep_duration_sec = 2;
+ struct power_sample sample[2];
+ struct igt_power pwr;
+ igt_spin_t *spin;
+
+ gem_quiescent_gpu(i915);
+ if (load) {
+ spin = igt_spin_new(i915, .ahnd = ahnd, .ctx = ctx,
+ .engine = ALL_ENGINES,
+ .flags = IGT_SPIN_POLL_RUN);
+ /* Wait till at least one spinner starts */
+ igt_spin_busywait_until_started(spin);
+ }
+
+ ret = igt_power_open(i915, &pwr, domain);
+ if (ret)
+ return ret;
+ igt_power_get_energy(&pwr, &sample[0]);
+ usleep(sleep_duration_sec * USEC_PER_SEC);
+ igt_power_get_energy(&pwr, &sample[1]);
+ igt_info("Measured power: %g mW\n", igt_power_get_mW(&pwr, &sample[0], &sample[1]));
+
+ igt_power_close(&pwr);
+ igt_free_spins(i915);
+ put_ahnd(ahnd);
+ intel_ctx_destroy(i915, ctx);
+
+ return 0;
+}
+
+static void usage(const char *name)
+{
+ igt_info("Usage: %s [options]\n", name);
+ igt_info("-i/--idle Measure idle power\n");
+ igt_info("-b/--busy Measure power under load\n");
+}
+
+int main(int argc, char *argv[])
+{
+ int i915 = drm_open_driver_master(DRIVER_INTEL);
+ static struct option long_options[] = {
+ {"idle", 0, 0, 'i'},
+ {"busy", 0, 0, 'b'},
+ { 0, 0, 0, 0 }
+ };
+ int opt = getopt_long(argc, argv, "ib", long_options, NULL);
+ int ret = 0;
+
+ switch (opt) {
+ case 'i':
+ ret = measure_power(i915, "gpu", false);
+ break;
+ case 'b':
+ ret = measure_power(i915, "gpu", true);
+ break;
+ default:
+ usage(argv[0]);
+ break;
+ }
+
+ close(i915);
+ return ret;
+}
diff --git a/tools/meson.build b/tools/meson.build
index d2defec8703..4bbbd993cac 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -22,6 +22,7 @@ tools_progs = [
'intel_error_decode',
'intel_forcewaked',
'intel_gpu_frequency',
+ 'intel_gpu_power',
'intel_firmware_decode',
'intel_framebuffer_dump',
'intel_gpu_time',
--
2.38.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3)
2023-01-20 16:38 [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Ashutosh Dixit
@ 2023-01-20 17:59 ` Patchwork
2023-01-20 18:00 ` [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Kamil Konieczny
2023-01-21 20:01 ` [igt-dev] ✓ Fi.CI.IGT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3) Patchwork
2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-01-20 17:59 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4272 bytes --]
== Series Details ==
Series: tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3)
URL : https://patchwork.freedesktop.org/series/113073/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12618 -> IGTPW_8386
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/index.html
Participating hosts (36 -> 36)
------------------------------
Additional (2): fi-kbl-soraka fi-bsw-kefka
Missing (2): fi-snb-2520m fi-bsw-n3050
Known issues
------------
Here are the changes found in IGTPW_8386 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_module_load@load:
- fi-kbl-soraka: NOTRUN -> [DMESG-WARN][3] ([i915#1982])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/fi-kbl-soraka/igt@i915_module_load@load.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][4] ([i915#1886])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@mman:
- fi-rkl-guc: [PASS][5] -> [TIMEOUT][6] ([i915#6794])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/fi-rkl-guc/igt@i915_selftest@live@mman.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/fi-rkl-guc/igt@i915_selftest@live@mman.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271]) +15 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@prime_vgem@basic-fence-flip:
- fi-bsw-kefka: NOTRUN -> [SKIP][8] ([fdo#109271]) +26 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/fi-bsw-kefka/igt@prime_vgem@basic-fence-flip.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- {bat-jsl-1}: [DMESG-FAIL][9] ([i915#5334]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/bat-jsl-1/igt@i915_selftest@live@gt_heartbeat.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/bat-jsl-1/igt@i915_selftest@live@gt_heartbeat.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
[i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7129 -> IGTPW_8386
CI-20190529: 20190529
CI_DRM_12618: 7ba8ff20ba23bc940e928ffe3a9054225fff418e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8386: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/index.html
IGT_7129: 7816773163a1b0d248dd9dd34d14e632ad8903be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/index.html
[-- Attachment #2: Type: text/html, Size: 4861 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement
2023-01-20 16:38 [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Ashutosh Dixit
2023-01-20 17:59 ` [igt-dev] ✓ Fi.CI.BAT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3) Patchwork
@ 2023-01-20 18:00 ` Kamil Konieczny
2023-01-21 2:05 ` Dixit, Ashutosh
2023-01-21 20:01 ` [igt-dev] ✓ Fi.CI.IGT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3) Patchwork
2 siblings, 1 reply; 7+ messages in thread
From: Kamil Konieczny @ 2023-01-20 18:00 UTC (permalink / raw)
To: igt-dev; +Cc: Badal Nilawar
Hi,
On 2023-01-20 at 08:38:31 -0800, Ashutosh Dixit wrote:
> In several instances (e.g. when investigating GPU power limits) it is very
> useful to be able to measure GPU power easily. Since we already have all
> ingredients for doing so, add a tool to measure Intel GPU power when idle
> and power under load.
>
> v2: Use softpin/allocator (Riana)
>
> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
These looks like a test or benchmark, btw intel_gpu_top already
has printing used power. What we can have is standalone app which
shows only power consumption every few seconds or some other
configurable interval, plus maybe for all GPUs if there are more.
+cc Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Regards,
Kamil
> ---
> tools/intel_gpu_power.c | 76 +++++++++++++++++++++++++++++++++++++++++
> tools/meson.build | 1 +
> 2 files changed, 77 insertions(+)
> create mode 100644 tools/intel_gpu_power.c
>
> diff --git a/tools/intel_gpu_power.c b/tools/intel_gpu_power.c
> new file mode 100644
> index 00000000000..d9e71581707
> --- /dev/null
> +++ b/tools/intel_gpu_power.c
> @@ -0,0 +1,76 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2022 Intel Corporation
> + */
> +
> +#include "igt.h"
> +#include "i915/gem.h"
> +#include "igt_power.h"
> +
> +static int measure_power(int i915, const char *domain, bool load)
> +{
> + const intel_ctx_t *ctx = intel_ctx_create_all_physical(i915);
> + uint64_t ahnd = get_reloc_ahnd(i915, ctx->id);
> + int ret, sleep_duration_sec = 2;
> + struct power_sample sample[2];
> + struct igt_power pwr;
> + igt_spin_t *spin;
> +
> + gem_quiescent_gpu(i915);
> + if (load) {
> + spin = igt_spin_new(i915, .ahnd = ahnd, .ctx = ctx,
> + .engine = ALL_ENGINES,
> + .flags = IGT_SPIN_POLL_RUN);
> + /* Wait till at least one spinner starts */
> + igt_spin_busywait_until_started(spin);
> + }
> +
> + ret = igt_power_open(i915, &pwr, domain);
> + if (ret)
> + return ret;
> + igt_power_get_energy(&pwr, &sample[0]);
> + usleep(sleep_duration_sec * USEC_PER_SEC);
> + igt_power_get_energy(&pwr, &sample[1]);
> + igt_info("Measured power: %g mW\n", igt_power_get_mW(&pwr, &sample[0], &sample[1]));
> +
> + igt_power_close(&pwr);
> + igt_free_spins(i915);
> + put_ahnd(ahnd);
> + intel_ctx_destroy(i915, ctx);
> +
> + return 0;
> +}
> +
> +static void usage(const char *name)
> +{
> + igt_info("Usage: %s [options]\n", name);
> + igt_info("-i/--idle Measure idle power\n");
> + igt_info("-b/--busy Measure power under load\n");
> +}
> +
> +int main(int argc, char *argv[])
> +{
> + int i915 = drm_open_driver_master(DRIVER_INTEL);
> + static struct option long_options[] = {
> + {"idle", 0, 0, 'i'},
> + {"busy", 0, 0, 'b'},
> + { 0, 0, 0, 0 }
> + };
> + int opt = getopt_long(argc, argv, "ib", long_options, NULL);
> + int ret = 0;
> +
> + switch (opt) {
> + case 'i':
> + ret = measure_power(i915, "gpu", false);
> + break;
> + case 'b':
> + ret = measure_power(i915, "gpu", true);
> + break;
> + default:
> + usage(argv[0]);
> + break;
> + }
> +
> + close(i915);
> + return ret;
> +}
> diff --git a/tools/meson.build b/tools/meson.build
> index d2defec8703..4bbbd993cac 100644
> --- a/tools/meson.build
> +++ b/tools/meson.build
> @@ -22,6 +22,7 @@ tools_progs = [
> 'intel_error_decode',
> 'intel_forcewaked',
> 'intel_gpu_frequency',
> + 'intel_gpu_power',
> 'intel_firmware_decode',
> 'intel_framebuffer_dump',
> 'intel_gpu_time',
> --
> 2.38.0
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement
2023-01-20 18:00 ` [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Kamil Konieczny
@ 2023-01-21 2:05 ` Dixit, Ashutosh
0 siblings, 0 replies; 7+ messages in thread
From: Dixit, Ashutosh @ 2023-01-21 2:05 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Ashutosh Dixit, Badal Nilawar,
Tvrtko Ursulin, Riana Tauro
On Fri, 20 Jan 2023 10:00:09 -0800, Kamil Konieczny wrote:
>
> Hi,
>
Hi Kamil,
> On 2023-01-20 at 08:38:31 -0800, Ashutosh Dixit wrote:
> > In several instances (e.g. when investigating GPU power limits) it is very
> > useful to be able to measure GPU power easily. Since we already have all
> > ingredients for doing so, add a tool to measure Intel GPU power when idle
> > and power under load.
> >
> > v2: Use softpin/allocator (Riana)
> >
> > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
>
> These looks like a test or benchmark, btw intel_gpu_top already
> has printing used power. What we can have is standalone app which
> shows only power consumption every few seconds or some other
> configurable interval, plus maybe for all GPUs if there are more.
>
> +cc Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
You are absolutely right, I agree on all points. I completely missed that
intel_gpu_top already shows power. At this point it only shows power for
integrated, we need to switch it from the rapl interface to igt_power
interface, igt_power supports both integrated and discrete (integrated
using rapl and discrete using hwmon).
I might resumbit this patch as a test, but tools wise I think the direction
should be to extend intel_gpu_top to support discrete.
Thanks.
--
Ashutosh
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3)
2023-01-20 16:38 [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Ashutosh Dixit
2023-01-20 17:59 ` [igt-dev] ✓ Fi.CI.BAT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3) Patchwork
2023-01-20 18:00 ` [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Kamil Konieczny
@ 2023-01-21 20:01 ` Patchwork
2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-01-21 20:01 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 25548 bytes --]
== Series Details ==
Series: tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3)
URL : https://patchwork.freedesktop.org/series/113073/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12618_full -> IGTPW_8386_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/index.html
Participating hosts (12 -> 10)
------------------------------
Missing (2): pig-skl-6260u pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8386_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_module_load@reload-with-fault-injection:
- {shard-dg1}: NOTRUN -> [DMESG-WARN][1] +2 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
Known issues
------------
Here are the changes found in IGTPW_8386_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-deadline:
- shard-apl: NOTRUN -> [FAIL][2] ([i915#2846])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-glk: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk4/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-apl: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_userptr_blits@vma-merge:
- shard-glk: NOTRUN -> [FAIL][5] ([i915#3318])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk2/igt@gem_userptr_blits@vma-merge.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-snb: [PASS][6] -> [DMESG-WARN][7] ([i915#4528])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-apl: NOTRUN -> [SKIP][8] ([fdo#109271]) +67 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-glk: [PASS][9] -> [FAIL][10] ([i915#5138])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-glk8/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +6 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk5/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +44 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk2/igt@kms_cdclk@mode-transition.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-apl: [PASS][14] -> [FAIL][15] ([i915#2346])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#7205])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-snb: [PASS][17] -> [SKIP][18] ([fdo#109271]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-snb5/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-snb4/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#658])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#658])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2437]) +1 similar issue
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl6/igt@kms_writeback@writeback-check-output.html
* igt@perf@stress-open-close:
- shard-glk: [PASS][22] -> [INCOMPLETE][23] ([i915#5213])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-glk1/igt@perf@stress-open-close.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk7/igt@perf@stress-open-close.html
* igt@runner@aborted:
- shard-snb: NOTRUN -> [FAIL][24] ([i915#4312])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-snb2/igt@runner@aborted.html
- shard-glk: NOTRUN -> [FAIL][25] ([i915#4312])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk7/igt@runner@aborted.html
* igt@sysfs_clients@fair-0:
- shard-apl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#2994])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl6/igt@sysfs_clients@fair-0.html
* igt@sysfs_clients@sema-50:
- shard-glk: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#2994])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk3/igt@sysfs_clients@sema-50.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- {shard-rkl}: [FAIL][28] ([i915#7742]) -> [PASS][29] +2 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@unaligned-write:
- {shard-rkl}: [SKIP][30] ([i915#2582]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-2/igt@fbdev@unaligned-write.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-6/igt@fbdev@unaligned-write.html
* igt@gem_eio@suspend:
- {shard-rkl}: [FAIL][32] ([i915#7052]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-4/igt@gem_eio@suspend.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-1/igt@gem_eio@suspend.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][34] ([i915#2842]) -> [PASS][35] +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_reloc@basic-gtt:
- {shard-rkl}: [SKIP][36] ([i915#3281]) -> [PASS][37] +2 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-2/igt@gem_exec_reloc@basic-gtt.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-5/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_partial_pwrite_pread@write-uncached:
- {shard-rkl}: [SKIP][38] ([i915#3282]) -> [PASS][39] +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-4/igt@gem_partial_pwrite_pread@write-uncached.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gen9_exec_parse@allowed-single:
- {shard-rkl}: [SKIP][40] ([i915#2527]) -> [PASS][41] +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-2/igt@gen9_exec_parse@allowed-single.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-5/igt@gen9_exec_parse@allowed-single.html
- shard-apl: [DMESG-WARN][42] ([i915#5566] / [i915#716]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-apl1/igt@gen9_exec_parse@allowed-single.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl3/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rpm@fences-dpms:
- {shard-rkl}: [SKIP][44] ([i915#1849]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-1/igt@i915_pm_rpm@fences-dpms.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-6/igt@i915_pm_rpm@fences-dpms.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- {shard-dg1}: [SKIP][46] ([i915#1397]) -> [PASS][47] +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@pm-tiling:
- {shard-rkl}: [SKIP][48] ([fdo#109308]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-2/igt@i915_pm_rpm@pm-tiling.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-6/igt@i915_pm_rpm@pm-tiling.html
* igt@kms_atomic@plane-cursor-legacy:
- {shard-tglu}: [SKIP][50] ([i915#1845] / [i915#7651]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-tglu-6/igt@kms_atomic@plane-cursor-legacy.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-tglu-8/igt@kms_atomic@plane-cursor-legacy.html
* igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1:
- shard-apl: [DMESG-WARN][52] ([i915#180]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-apl1/igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-apl1/igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- {shard-rkl}: [SKIP][54] ([i915#1849] / [i915#4098]) -> [PASS][55] +14 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- {shard-tglu}: [SKIP][56] ([i915#1849]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_psr@sprite_plane_onoff:
- {shard-rkl}: [SKIP][58] ([i915#1072]) -> [PASS][59] +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-2/igt@kms_psr@sprite_plane_onoff.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-6/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_vblank@pipe-a-query-forked:
- {shard-tglu}: [SKIP][60] ([i915#7651]) -> [PASS][61] +9 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-tglu-6/igt@kms_vblank@pipe-a-query-forked.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-tglu-4/igt@kms_vblank@pipe-a-query-forked.html
* igt@kms_vblank@pipe-b-query-forked-busy:
- {shard-rkl}: [SKIP][62] ([i915#1845] / [i915#4098]) -> [PASS][63] +13 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-2/igt@kms_vblank@pipe-b-query-forked-busy.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked-busy.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- {shard-rkl}: [SKIP][64] ([i915#2436]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@semaphore-busy@vcs1:
- {shard-dg1}: [FAIL][66] ([i915#4349]) -> [PASS][67] +2 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12618/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874
[i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6772]: https://gitlab.freedesktop.org/drm/intel/issues/6772
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#7205]: https://gitlab.freedesktop.org/drm/intel/issues/7205
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7129 -> IGTPW_8386
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12618: 7ba8ff20ba23bc940e928ffe3a9054225fff418e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8386: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/index.html
IGT_7129: 7816773163a1b0d248dd9dd34d14e632ad8903be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8386/index.html
[-- Attachment #2: Type: text/html, Size: 19971 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-01-21 20:01 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-20 16:38 [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Ashutosh Dixit
2023-01-20 17:59 ` [igt-dev] ✓ Fi.CI.BAT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3) Patchwork
2023-01-20 18:00 ` [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Kamil Konieczny
2023-01-21 2:05 ` Dixit, Ashutosh
2023-01-21 20:01 ` [igt-dev] ✓ Fi.CI.IGT: success for tools/intel_gpu_power: Intel GPU idle/busy power measurement (rev3) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-01-19 5:01 [igt-dev] [PATCH i-g-t] tools/intel_gpu_power: Intel GPU idle/busy power measurement Ashutosh Dixit
2023-01-19 3:43 Ashutosh Dixit
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox