[Mesa-dev] [PATCH] nvc0: do not duplicate similar performance metrics

Pierre Moreau pierre.morrow at free.fr
Mon Oct 31 13:23:02 UTC 2016


Reviewed-by: Pierre Moreau <pierre.morrow at free.fr>

On 02:54 pm - Oct 31 2016, Samuel Pitoiset wrote:
> Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
> ---
>  .../drivers/nouveau/nvc0/nvc0_query_hw_metric.c    | 50 +++-------------------
>  1 file changed, 7 insertions(+), 43 deletions(-)
> 
> diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c b/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
> index 2f85c32..36534ba 100644
> --- a/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
> +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
> @@ -257,24 +257,6 @@ static const struct nvc0_hw_metric_query_cfg *sm21_hw_metric_queries[] =
>  
>  /* ==== Compute capability 3.0 (GK104/GK106/GK107) ==== */
>  static const struct nvc0_hw_metric_query_cfg
> -sm30_achieved_occupancy =
> -{
> -   .type        = NVC0_HW_METRIC_QUERY_ACHIEVED_OCCUPANCY,
> -   .queries[0]  = _SM(ACTIVE_WARPS),
> -   .queries[1]  = _SM(ACTIVE_CYCLES),
> -   .num_queries = 2,
> -};
> -
> -static const struct nvc0_hw_metric_query_cfg
> -sm30_branch_efficiency =
> -{
> -   .type        = NVC0_HW_METRIC_QUERY_BRANCH_EFFICIENCY,
> -   .queries[0]  = _SM(BRANCH),
> -   .queries[1]  = _SM(DIVERGENT_BRANCH),
> -   .num_queries = 2,
> -};
> -
> -static const struct nvc0_hw_metric_query_cfg
>  sm30_inst_issued =
>  {
>     .type        = NVC0_HW_METRIC_QUERY_INST_ISSUED,
> @@ -284,15 +266,6 @@ sm30_inst_issued =
>  };
>  
>  static const struct nvc0_hw_metric_query_cfg
> -sm30_inst_per_wrap =
> -{
> -   .type        = NVC0_HW_METRIC_QUERY_INST_PER_WRAP,
> -   .queries[0]  = _SM(INST_EXECUTED),
> -   .queries[1]  = _SM(WARPS_LAUNCHED),
> -   .num_queries = 2,
> -};
> -
> -static const struct nvc0_hw_metric_query_cfg
>  sm30_inst_replay_overhead =
>  {
>     .type        = NVC0_HW_METRIC_QUERY_INST_REPLAY_OVERHEAD,
> @@ -332,15 +305,6 @@ sm30_issue_slot_utilization =
>  };
>  
>  static const struct nvc0_hw_metric_query_cfg
> -sm30_ipc =
> -{
> -   .type        = NVC0_HW_METRIC_QUERY_IPC,
> -   .queries[0]  = _SM(INST_EXECUTED),
> -   .queries[1]  = _SM(ACTIVE_CYCLES),
> -   .num_queries = 2,
> -};
> -
> -static const struct nvc0_hw_metric_query_cfg
>  sm30_shared_replay_overhead =
>  {
>     .type        = NVC0_HW_METRIC_QUERY_SHARED_REPLAY_OVERHEAD,
> @@ -352,29 +316,29 @@ sm30_shared_replay_overhead =
>  
>  static const struct nvc0_hw_metric_query_cfg *sm30_hw_metric_queries[] =
>  {
> -   &sm30_achieved_occupancy,
> -   &sm30_branch_efficiency,
> +   &sm20_achieved_occupancy,
> +   &sm20_branch_efficiency,
>     &sm30_inst_issued,
> -   &sm30_inst_per_wrap,
> +   &sm20_inst_per_wrap,
>     &sm30_inst_replay_overhead,
>     &sm30_issued_ipc,
>     &sm30_issue_slots,
>     &sm30_issue_slot_utilization,
> -   &sm30_ipc,
> +   &sm20_ipc,
>     &sm30_shared_replay_overhead,
>  };
>  
>  /* ==== Compute capability 3.5 (GK110) ==== */
>  static const struct nvc0_hw_metric_query_cfg *sm35_hw_metric_queries[] =
>  {
> -   &sm30_achieved_occupancy,
> +   &sm20_achieved_occupancy,
>     &sm30_inst_issued,
> -   &sm30_inst_per_wrap,
> +   &sm20_inst_per_wrap,
>     &sm30_inst_replay_overhead,
>     &sm30_issued_ipc,
>     &sm30_inst_issued,
>     &sm30_issue_slot_utilization,
> -   &sm30_ipc,
> +   &sm20_ipc,
>     &sm30_shared_replay_overhead,
>  };
>  
> -- 
> 2.10.1
> 
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20161031/1520ce20/attachment-0001.sig>


More information about the mesa-dev mailing list