Skip to content

Conversation

@gary-sweet
Copy link
Owner

Previously, the 'stats' interface just used HWCPipe to
interrogate performance counters from the device. HWCPipe
is not widely supported, so this really only worked for
Arm devices.

This change allows multiple 'StatsProviders' to be used.
Each provider can supply all, some, or none of the requested
counters depending on its capabilities. Any counters not
supplied by one provider will be requested of the next in
the list until one is found, or we run out of providers.
So, CPU counters can come from HWCPipe for example, whilst
GPU counters come from Vulkan's extension.

The StatsProvider defines an abstract interface that is
implemented by the concrete providers. The parameters used
for graphing the statistics have moved from the GUI classes
into the StatsProvider also. This allows providers to modify
the names, units and scaling of counters where these differ
from the default values.

Description

Please include a summary of the change, new sample or fixed issue. Please also include relevant motivation and context.
Please read the contribution guidelines

Fixes #

General Checklist:

Please ensure the following points are checked:

  • My code follows the coding style
  • I have reviewed file licenses
  • I have commented any added functions (in line with Doxygen)
  • I have commented any code that could be hard to understand
  • My changes do not add any new compiler warnings
  • My changes do not add any new validation layer errors or warnings
  • I have used existing framework/helper functions where possible
  • My changes build and run on Windows, Linux, macOS and Android. Otherwise I have documented any exceptions

Sample Checklist

If your PR contains a new or modified sample, these further checks must be carried out in addition to the General Checklist:

  • I have tested the sample on at least one compliant Vulkan implementation
  • If the sample is vendor-specific, I have tagged it appropriately
  • I have stated on what implementation the sample has been tested so that others can test on different implementations and platforms
  • Any dependent assets have been merged and published in downstream modules

@gary-sweet gary-sweet force-pushed the perf_counters branch 4 times, most recently from ee9dded to d6e0fce Compare May 5, 2020 14:36
Previously, the 'stats' interface just used HWCPipe to
interrogate performance counters from the device. HWCPipe
is not widely supported, so this really only worked for
Arm devices.

This change allows multiple 'StatsProviders' to be used.
Each provider can supply all, some, or none of the requested
counters depending on its capabilities. Any counters not
supplied by one provider will be requested of the next in
the list until one is found, or we run out of providers.
So, CPU counters can come from HWCPipe for example, whilst
GPU counters come from Vulkan's extension which has been
added as another provider.

The StatsProvider defines an abstract interface that is
implemented by the concrete providers. The parameters used
for graphing the statistics have moved from the GUI classes
into the StatsProvider also. This allows providers to modify
the names, units and scaling of counters where these differ
from the default values.
gary-sweet added 10 commits May 6, 2020 09:52
Simplifies code in device
Based on private feedback from Zandro, I've moved the
construction of the stats object into the base
VulkanSamples class which leaves individual samples
to just request the samples they would like.

The active_frame_index is no longer passed to
update_stats() or the command_buffer_begun/ended()
methods. It is fetched internally by the providers
that require it.
size_t -> uint32_t
Override prepare_render_context() to use custom render_context.
Ensures stats always sees the right render context.
gary-sweet pushed a commit that referenced this pull request May 3, 2023
* logic_op_dynamic_state sample (#1)

* Fix readme comment (#2)

* Fix validation layers errors (KhronosGroup#3)

* Fixes after review (KhronosGroup#4)
gary-sweet pushed a commit that referenced this pull request Feb 25, 2025
… vkb::allocated::Allocated<bindingType> (KhronosGroup#1193)

* Unify vkb::allocated::Allocated and vkb::allocated::HPPAllocated into vkb::allocated::Allocated<bindingType>

* Adding documentation to the allocated class hierarchy, base classes edition (#1)

* Adding documentation to the allocated class hierarchy, base classes edition

* fixup! Adding documentation to the allocated class hierarchy, base classes edition

* fixup! Adding documentation to the allocated class hierarchy, base classes edition

* fixup! fixup! Adding documentation to the allocated class hierarchy, base classes edition

* Fix formatting and doxygen issue.

* Unify vkb::allocated::Allocated and vkb::allocated::HPPAllocated into vkb::allocated::Allocated<bindingType>

* Adding documentation to the allocated class hierarchy, base classes edition (#1)

* Adding documentation to the allocated class hierarchy, base classes edition

* fixup! Adding documentation to the allocated class hierarchy, base classes edition

* fixup! Adding documentation to the allocated class hierarchy, base classes edition

* fixup! fixup! Adding documentation to the allocated class hierarchy, base classes edition

* Fix formatting and doxygen issue.

---------

Co-authored-by: Bradley Austin Davis <bdavis@saintandreas.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants