brw: Stop setting SFID in scoreboard tests

They won't affect the scoreboard, and will get in the
way of a later change.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34354>
This commit is contained in:
Caio Oliveira
2025-04-03 00:10:29 -07:00
committed by Marge Bot
parent bcea076aca
commit 3e727000dd
+3 -3
View File
@@ -253,7 +253,7 @@ TEST_F(scoreboard_test, RAW_outoforder_outoforder)
*/
brw_reg x = bld.vgrf(BRW_TYPE_D);
emit_SEND(bld, x, g[1], g[2]);
emit_SEND(bld, g[3], x, g[4])->sfid++;
emit_SEND(bld, g[3], x, g[4]);
brw_calculate_cfg(*v);
bblock_t *block0 = v->cfg->blocks[0];
@@ -355,7 +355,7 @@ TEST_F(scoreboard_test, WAR_outoforder_outoforder)
brw_reg x = bld.vgrf(BRW_TYPE_D);
emit_SEND(bld, g[1], g[2], x);
emit_SEND(bld, x, g[3], g[4])->sfid++;
emit_SEND(bld, x, g[3], g[4]);
brw_calculate_cfg(*v);
bblock_t *block0 = v->cfg->blocks[0];
@@ -462,7 +462,7 @@ TEST_F(scoreboard_test, WAW_outoforder_outoforder)
brw_reg x = bld.vgrf(BRW_TYPE_D);
emit_SEND(bld, x, g[1], g[2]);
emit_SEND(bld, x, g[3], g[4])->sfid++;
emit_SEND(bld, x, g[3], g[4]);
brw_calculate_cfg(*v);
bblock_t *block0 = v->cfg->blocks[0];