[Mesa-dev] [PATCH 2/2] i965/compute: Emit GPGPU_WALKER in genX_state_upload

Lionel Landwerlin lionel.g.landwerlin at intel.com
Thu Jan 17 12:34:01 UTC 2019


Put a few nits below, but otherwise looks good.

-
Lionel

On 13/11/2018 00:05, Jordan Justen wrote:
> Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
> ---
>   src/mesa/drivers/dri/i965/brw_compute.c       | 131 +-----------------
>   src/mesa/drivers/dri/i965/brw_context.h       |   2 +
>   src/mesa/drivers/dri/i965/genX_state_upload.c | 102 ++++++++++++++
>   3 files changed, 105 insertions(+), 130 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_compute.c b/src/mesa/drivers/dri/i965/brw_compute.c
> index de08fc3ac16..6e4f5b593aa 100644
> --- a/src/mesa/drivers/dri/i965/brw_compute.c
> +++ b/src/mesa/drivers/dri/i965/brw_compute.c
> @@ -34,135 +34,6 @@
>   #include "brw_defines.h"
>   
>   
> -static void
> -prepare_indirect_gpgpu_walker(struct brw_context *brw)
> -{
> -   const struct gen_device_info *devinfo = &brw->screen->devinfo;
> -   GLintptr indirect_offset = brw->compute.num_work_groups_offset;
> -   struct brw_bo *bo = brw->compute.num_work_groups_bo;
> -
> -   brw_load_register_mem(brw, GEN7_GPGPU_DISPATCHDIMX, bo, indirect_offset + 0);
> -   brw_load_register_mem(brw, GEN7_GPGPU_DISPATCHDIMY, bo, indirect_offset + 4);
> -   brw_load_register_mem(brw, GEN7_GPGPU_DISPATCHDIMZ, bo, indirect_offset + 8);
> -
> -   if (devinfo->gen > 7)
> -      return;
> -
> -   /* Clear upper 32-bits of SRC0 and all 64-bits of SRC1 */
> -   BEGIN_BATCH(7);
> -   OUT_BATCH(MI_LOAD_REGISTER_IMM | (7 - 2));
> -   OUT_BATCH(MI_PREDICATE_SRC0 + 4);
> -   OUT_BATCH(0u);
> -   OUT_BATCH(MI_PREDICATE_SRC1 + 0);
> -   OUT_BATCH(0u);
> -   OUT_BATCH(MI_PREDICATE_SRC1 + 4);
> -   OUT_BATCH(0u);
> -   ADVANCE_BATCH();
> -
> -   /* Load compute_dispatch_indirect_x_size into SRC0 */
> -   brw_load_register_mem(brw, MI_PREDICATE_SRC0, bo, indirect_offset + 0);
> -
> -   /* predicate = (compute_dispatch_indirect_x_size == 0); */
> -   BEGIN_BATCH(1);
> -   OUT_BATCH(GEN7_MI_PREDICATE |
> -             MI_PREDICATE_LOADOP_LOAD |
> -             MI_PREDICATE_COMBINEOP_SET |
> -             MI_PREDICATE_COMPAREOP_SRCS_EQUAL);
> -   ADVANCE_BATCH();
> -
> -   /* Load compute_dispatch_indirect_y_size into SRC0 */
> -   brw_load_register_mem(brw, MI_PREDICATE_SRC0, bo, indirect_offset + 4);
> -
> -   /* predicate |= (compute_dispatch_indirect_y_size == 0); */
> -   BEGIN_BATCH(1);
> -   OUT_BATCH(GEN7_MI_PREDICATE |
> -             MI_PREDICATE_LOADOP_LOAD |
> -             MI_PREDICATE_COMBINEOP_OR |
> -             MI_PREDICATE_COMPAREOP_SRCS_EQUAL);
> -   ADVANCE_BATCH();
> -
> -   /* Load compute_dispatch_indirect_z_size into SRC0 */
> -   brw_load_register_mem(brw, MI_PREDICATE_SRC0, bo, indirect_offset + 8);
> -
> -   /* predicate |= (compute_dispatch_indirect_z_size == 0); */
> -   BEGIN_BATCH(1);
> -   OUT_BATCH(GEN7_MI_PREDICATE |
> -             MI_PREDICATE_LOADOP_LOAD |
> -             MI_PREDICATE_COMBINEOP_OR |
> -             MI_PREDICATE_COMPAREOP_SRCS_EQUAL);
> -   ADVANCE_BATCH();
> -
> -   /* predicate = !predicate; */
> -   BEGIN_BATCH(1);
> -   OUT_BATCH(GEN7_MI_PREDICATE |
> -             MI_PREDICATE_LOADOP_LOADINV |
> -             MI_PREDICATE_COMBINEOP_OR |
> -             MI_PREDICATE_COMPAREOP_FALSE);
> -   ADVANCE_BATCH();
> -}
> -
> -static void
> -brw_emit_gpgpu_walker(struct brw_context *brw)
> -{
> -   const struct gen_device_info *devinfo = &brw->screen->devinfo;
> -   const struct brw_cs_prog_data *prog_data =
> -      brw_cs_prog_data(brw->cs.base.prog_data);
> -
> -   const GLuint *num_groups = brw->compute.num_work_groups;
> -   uint32_t indirect_flag;
> -
> -   if (brw->compute.num_work_groups_bo == NULL) {
> -      indirect_flag = 0;
> -   } else {
> -      indirect_flag =
> -         GEN7_GPGPU_INDIRECT_PARAMETER_ENABLE |
> -         (devinfo->gen == 7 ? GEN7_GPGPU_PREDICATE_ENABLE : 0);
> -      prepare_indirect_gpgpu_walker(brw);
> -   }
> -
> -   const unsigned simd_size = prog_data->simd_size;
> -   unsigned group_size = prog_data->local_size[0] *
> -      prog_data->local_size[1] * prog_data->local_size[2];
> -   unsigned thread_width_max =
> -      (group_size + simd_size - 1) / simd_size;
> -
> -   uint32_t right_mask = 0xffffffffu >> (32 - simd_size);
> -   const unsigned right_non_aligned = group_size & (simd_size - 1);
> -   if (right_non_aligned != 0)
> -      right_mask >>= (simd_size - right_non_aligned);
> -
> -   uint32_t dwords = devinfo->gen < 8 ? 11 : 15;
> -   BEGIN_BATCH(dwords);
> -   OUT_BATCH(GPGPU_WALKER << 16 | (dwords - 2) | indirect_flag);
> -   OUT_BATCH(0);
> -   if (devinfo->gen >= 8) {
> -      OUT_BATCH(0);                     /* Indirect Data Length */
> -      OUT_BATCH(0);                     /* Indirect Data Start Address */
> -   }
> -   assert(thread_width_max <= brw->screen->devinfo.max_cs_threads);
> -   OUT_BATCH(SET_FIELD(simd_size / 16, GPGPU_WALKER_SIMD_SIZE) |
> -             SET_FIELD(thread_width_max - 1, GPGPU_WALKER_THREAD_WIDTH_MAX));
> -   OUT_BATCH(0);                        /* Thread Group ID Starting X */
> -   if (devinfo->gen >= 8)
> -      OUT_BATCH(0);                     /* MBZ */
> -   OUT_BATCH(num_groups[0]);            /* Thread Group ID X Dimension */
> -   OUT_BATCH(0);                        /* Thread Group ID Starting Y */
> -   if (devinfo->gen >= 8)
> -      OUT_BATCH(0);                     /* MBZ */
> -   OUT_BATCH(num_groups[1]);            /* Thread Group ID Y Dimension */
> -   OUT_BATCH(0);                        /* Thread Group ID Starting/Resume Z */
> -   OUT_BATCH(num_groups[2]);            /* Thread Group ID Z Dimension */
> -   OUT_BATCH(right_mask);               /* Right Execution Mask */
> -   OUT_BATCH(0xffffffff);               /* Bottom Execution Mask */
> -   ADVANCE_BATCH();
> -
> -   BEGIN_BATCH(2);
> -   OUT_BATCH(MEDIA_STATE_FLUSH << 16 | (2 - 2));
> -   OUT_BATCH(0);
> -   ADVANCE_BATCH();
> -}
> -
> -
>   static void
>   brw_dispatch_compute_common(struct gl_context *ctx)
>   {
> @@ -190,7 +61,7 @@ brw_dispatch_compute_common(struct gl_context *ctx)
>      brw->batch.no_wrap = true;
>      brw_upload_compute_state(brw);
>   
> -   brw_emit_gpgpu_walker(brw);
> +   brw->vtbl.emit_compute_walker(brw);
>   
>      brw->batch.no_wrap = false;
>   
> diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h
> index 7fd15669eb9..a72c84585e2 100644
> --- a/src/mesa/drivers/dri/i965/brw_context.h
> +++ b/src/mesa/drivers/dri/i965/brw_context.h
> @@ -752,6 +752,8 @@ struct brw_context
>                                           struct brw_bo *bo,
>                                           uint32_t offset_in_bytes,
>                                           uint32_t report_id);
> +
> +      void (*emit_compute_walker)(struct brw_context *brw);
>      } vtbl;
>   
>      struct brw_bufmgr *bufmgr;
> diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c
> index 6495862e700..9ce23b1db70 100644
> --- a/src/mesa/drivers/dri/i965/genX_state_upload.c
> +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c
> @@ -4579,6 +4579,107 @@ static const struct brw_tracked_state genX(cs_state) = {
>      .emit = genX(upload_cs_state)
>   };
>   
> +#define GPGPU_DISPATCHDIMX 0x2500
> +#define GPGPU_DISPATCHDIMY 0x2504
> +#define GPGPU_DISPATCHDIMZ 0x2508
> +
> +#define MI_PREDICATE_SRC0  0x2400
> +#define MI_PREDICATE_SRC1  0x2408
> +
> +static void
> +prepare_indirect_gpgpu_walker(struct brw_context *brw)
> +{
> +   GLintptr indirect_offset = brw->compute.num_work_groups_offset;
> +   struct brw_bo *bo = brw->compute.num_work_groups_bo;
> +
> +   emit_lrm(brw, GPGPU_DISPATCHDIMX, ro_32_bo(bo, indirect_offset + 0));
> +   emit_lrm(brw, GPGPU_DISPATCHDIMY, ro_32_bo(bo, indirect_offset + 4));
> +   emit_lrm(brw, GPGPU_DISPATCHDIMZ, ro_32_bo(bo, indirect_offset + 8));
> +
> +#if GEN_GEN <= 7


This whole block is within a #if GEN_GEN >= 7, so maybe turn this one 
into GEN_GEN == 7.


> +   /* Clear upper 32-bits of SRC0 and all 64-bits of SRC1 */
> +   emit_lri(brw, MI_PREDICATE_SRC0 + 4, 0);
> +   emit_lri(brw, MI_PREDICATE_SRC1    , 0);
> +   emit_lri(brw, MI_PREDICATE_SRC1 + 4, 0);
> +
> +   /* Load compute_dispatch_indirect_x_size into SRC0 */
> +   emit_lrm(brw, MI_PREDICATE_SRC0, ro_32_bo(bo, indirect_offset + 0));
> +
> +   /* predicate = (compute_dispatch_indirect_x_size == 0); */
> +   brw_batch_emit(brw, GENX(MI_PREDICATE), mip) {
> +      mip.LoadOperation    = LOAD_LOAD;
> +      mip.CombineOperation = COMBINE_SET;
> +      mip.CompareOperation = COMPARE_SRCS_EQUAL;
> +   }
> +
> +   /* Load compute_dispatch_indirect_y_size into SRC0 */
> +   emit_lrm(brw, MI_PREDICATE_SRC0, ro_32_bo(bo, indirect_offset + 4));
> +
> +   /* predicate |= (compute_dispatch_indirect_y_size == 0); */
> +   brw_batch_emit(brw, GENX(MI_PREDICATE), mip) {
> +      mip.LoadOperation    = LOAD_LOAD;
> +      mip.CombineOperation = COMBINE_OR;
> +      mip.CompareOperation = COMPARE_SRCS_EQUAL;
> +   }
> +
> +   /* Load compute_dispatch_indirect_z_size into SRC0 */
> +   emit_lrm(brw, MI_PREDICATE_SRC0, ro_32_bo(bo, indirect_offset + 8));
> +
> +   /* predicate |= (compute_dispatch_indirect_z_size == 0); */
> +   brw_batch_emit(brw, GENX(MI_PREDICATE), mip) {
> +      mip.LoadOperation    = LOAD_LOAD;
> +      mip.CombineOperation = COMBINE_OR;
> +      mip.CompareOperation = COMPARE_SRCS_EQUAL;
> +   }
> +
> +   /* predicate = !predicate; */
> +#define COMPARE_FALSE                           1


I think this COMPARE_FALSE should be added to the genxml files.


> +   brw_batch_emit(brw, GENX(MI_PREDICATE), mip) {
> +      mip.LoadOperation    = LOAD_LOADINV;
> +      mip.CombineOperation = COMBINE_OR;
> +      mip.CompareOperation = COMPARE_FALSE;
> +   }
> +#endif
> +}
> +
> +static void
> +genX(emit_gpgpu_walker)(struct brw_context *brw)
> +{
> +   const struct brw_cs_prog_data *prog_data =
> +      brw_cs_prog_data(brw->cs.base.prog_data);
> +
> +   const GLuint *num_groups = brw->compute.num_work_groups;
> +
> +   bool indirect = brw->compute.num_work_groups_bo != NULL;
> +   if (indirect)
> +      prepare_indirect_gpgpu_walker(brw);
> +
> +   const unsigned simd_size = prog_data->simd_size;
> +   unsigned group_size = prog_data->local_size[0] *
> +      prog_data->local_size[1] * prog_data->local_size[2];
> +
> +   uint32_t right_mask = 0xffffffffu >> (32 - simd_size);
> +   const unsigned right_non_aligned = group_size & (simd_size - 1);
> +   if (right_non_aligned != 0)
> +      right_mask >>= (simd_size - right_non_aligned);


I guess this assert could be added back or moved to 
brw_fs.cpp:cs_set_simd_size :

assert(prog_data->threads <= brw->screen->devinfo.max_cs_threads);


> +
> +   brw_batch_emit(brw, GENX(GPGPU_WALKER), ggw) {
> +      ggw.IndirectParameterEnable      = indirect;
> +      ggw.PredicateEnable              = GEN_GEN <= 7 && indirect;
> +      ggw.SIMDSize                     = prog_data->simd_size / 16;
> +      ggw.ThreadDepthCounterMaximum    = 0;
> +      ggw.ThreadHeightCounterMaximum   = 0;
> +      ggw.ThreadWidthCounterMaximum    = prog_data->threads - 1;
> +      ggw.ThreadGroupIDXDimension      = num_groups[0];
> +      ggw.ThreadGroupIDYDimension      = num_groups[1];
> +      ggw.ThreadGroupIDZDimension      = num_groups[2];
> +      ggw.RightExecutionMask           = right_mask;
> +      ggw.BottomExecutionMask          = 0xffffffff;
> +   }
> +
> +   brw_batch_emit(brw, GENX(MEDIA_STATE_FLUSH), msf);
> +}
> +
>   #endif
>   
>   /* ---------------------------------------------------------------------- */
> @@ -5972,5 +6073,6 @@ genX(init_atoms)(struct brw_context *brw)
>                              compute_atoms, ARRAY_SIZE(compute_atoms));
>   
>      brw->vtbl.emit_mi_report_perf_count = genX(emit_mi_report_perf_count);
> +   brw->vtbl.emit_compute_walker = genX(emit_gpgpu_walker);
>   #endif
>   }




More information about the mesa-dev mailing list