Mesa (master): nir/print: add compute shader info

Rob Clark robclark at kemper.freedesktop.org
Fri Apr 14 16:46:45 UTC 2017


Module: Mesa
Branch: master
Commit: 9fc3e7137ac5566afd3f287ea67c0cdf3c3bfe97
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9fc3e7137ac5566afd3f287ea67c0cdf3c3bfe97

Author: Rob Clark <robdclark at gmail.com>
Date:   Thu Apr  6 11:56:23 2017 -0400

nir/print: add compute shader info

Signed-off-by: Rob Clark <robdclark at gmail.com>
Reviewed-by: Alejandro Piñeiro <apinheiro at igalia.com>

---

 src/compiler/nir/nir_print.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c
index af10555712..e6c5c9c830 100644
--- a/src/compiler/nir/nir_print.c
+++ b/src/compiler/nir/nir_print.c
@@ -1169,6 +1169,19 @@ nir_print_shader_annotated(nir_shader *shader, FILE *fp,
    if (shader->info->label)
       fprintf(fp, "label: %s\n", shader->info->label);
 
+   switch (shader->stage) {
+   case MESA_SHADER_COMPUTE:
+      fprintf(fp, "local-size: %u, %u, %u%s\n",
+              shader->info->cs.local_size[0],
+              shader->info->cs.local_size[1],
+              shader->info->cs.local_size[2],
+              shader->info->cs.local_size_variable ? " (variable)" : "");
+      fprintf(fp, "shared-size: %u\n", shader->info->cs.shared_size);
+      break;
+   default:
+      break;
+   }
+
    fprintf(fp, "inputs: %u\n", shader->num_inputs);
    fprintf(fp, "outputs: %u\n", shader->num_outputs);
    fprintf(fp, "uniforms: %u\n", shader->num_uniforms);




More information about the mesa-commit mailing list