Hi all, Here is an update on the series to enable GPA [1] through the GL_INTEL_performance_query extension. A couple of issues were raised by Ken on patch 2 and I also extended the raw queries up to gen 11 in patch 4.
Cheers, [1] : https://software.intel.com/en-us/gpa Lionel Landwerlin (5): i965: perf: extract utility functions i965: perf: snapshot RPSTAT register i965: perf: read slice/unslice frequencies from OA reports i965: perf: add support for raw queries i965: perf: enable GPA query statistics src/mesa/drivers/dri/i965/Makefile.sources | 3 + src/mesa/drivers/dri/i965/brw_context.h | 3 +- src/mesa/drivers/dri/i965/brw_defines.h | 12 + src/mesa/drivers/dri/i965/brw_oa.py | 2 +- src/mesa/drivers/dri/i965/brw_performance_query.c | 495 ++++++++++----------- src/mesa/drivers/dri/i965/brw_performance_query.h | 203 ++++++++- .../drivers/dri/i965/brw_performance_query_mdapi.c | 443 ++++++++++++++++++ .../drivers/dri/i965/brw_performance_query_mdapi.h | 39 ++ .../dri/i965/brw_performance_query_metrics.h | 57 +++ src/mesa/drivers/dri/i965/meson.build | 3 + 10 files changed, 983 insertions(+), 277 deletions(-) create mode 100644 src/mesa/drivers/dri/i965/brw_performance_query_mdapi.c create mode 100644 src/mesa/drivers/dri/i965/brw_performance_query_mdapi.h create mode 100644 src/mesa/drivers/dri/i965/brw_performance_query_metrics.h -- 2.16.3 _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
