intel/brw: Rename fs_builder to brw_builder

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33076>
This commit is contained in:
Caio Oliveira
2024-12-29 15:41:04 -08:00
committed by Marge Bot
parent f2d4c9db92
commit 5ac82efd35
34 changed files with 391 additions and 391 deletions
+4 -4
View File
@@ -9,7 +9,7 @@
using namespace brw;
static void
f16_using_mac(const fs_builder &bld, fs_inst *inst)
f16_using_mac(const brw_builder &bld, fs_inst *inst)
{
/* We only intend to support configurations where the destination and
* accumulator have the same type.
@@ -115,7 +115,7 @@ f16_using_mac(const fs_builder &bld, fs_inst *inst)
}
static void
int8_using_dp4a(const fs_builder &bld, fs_inst *inst)
int8_using_dp4a(const brw_builder &bld, fs_inst *inst)
{
/* We only intend to support configurations where the destination and
* accumulator have the same type.
@@ -162,7 +162,7 @@ int8_using_dp4a(const fs_builder &bld, fs_inst *inst)
}
static void
int8_using_mul_add(const fs_builder &bld, fs_inst *inst)
int8_using_mul_add(const brw_builder &bld, fs_inst *inst)
{
/* We only intend to support configurations where the destination and
* accumulator have the same type.
@@ -280,7 +280,7 @@ brw_lower_dpas(fs_visitor &v)
continue;
const unsigned exec_size = v.devinfo->ver >= 20 ? 16 : 8;
const fs_builder bld = fs_builder(&v, block, inst).group(exec_size, 0).exec_all();
const brw_builder bld = brw_builder(&v, block, inst).group(exec_size, 0).exec_all();
if (brw_type_is_float(inst->dst.type)) {
f16_using_mac(bld, inst);