Mesa (master): intel/eu: Stop overriding exec sizes in send_indirect_message

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Jan 18 16:20:42 UTC 2019


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

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Sat Jan 12 20:26:53 2019 -0600

intel/eu: Stop overriding exec sizes in send_indirect_message

For a long time, we based exec sizes on destination register widths.
We've not been doing that since 1ca3a9442760b6f7 but a few remnants
accidentally remained.

Reviewed-by: Anuj Phogat <anuj.phogat at gmail.com>

---

 src/intel/compiler/brw_eu_emit.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/intel/compiler/brw_eu_emit.c b/src/intel/compiler/brw_eu_emit.c
index 45e2552783..0b4cd4dc21 100644
--- a/src/intel/compiler/brw_eu_emit.c
+++ b/src/intel/compiler/brw_eu_emit.c
@@ -2473,9 +2473,6 @@ brw_send_indirect_message(struct brw_codegen *p,
       brw_set_src1(p, send, addr);
    }
 
-   if (dst.width < BRW_EXECUTE_8)
-      brw_inst_set_exec_size(devinfo, send, dst.width);
-
    brw_set_dest(p, send, dst);
    brw_set_src0(p, send, retype(payload, BRW_REGISTER_TYPE_UD));
    brw_inst_set_sfid(devinfo, send, sfid);




More information about the mesa-commit mailing list