mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 15:40:11 +01:00
pan/bi: Remove unused prints
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Reviewed-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6749>
This commit is contained in:
parent
2ff53879f2
commit
ec43629e8c
3 changed files with 0 additions and 32 deletions
|
|
@ -35,9 +35,7 @@ const char * bi_clause_type_name(enum bifrost_clause_type T);
|
|||
const char * bi_output_mod_name(enum bifrost_outmod mod);
|
||||
const char * bi_minmax_mode_name(enum bifrost_minmax_mode mod);
|
||||
const char * bi_round_mode_name(enum bifrost_roundmode mod);
|
||||
const char * bi_csel_cond_name(enum bifrost_csel_cond cond);
|
||||
const char * bi_interp_mode_name(enum bifrost_interp_mode mode);
|
||||
const char * bi_ldst_type_name(enum bifrost_ldst_type type);
|
||||
const char * bi_class_name(enum bi_class cl);
|
||||
const char * bi_cond_name(enum bi_cond cond);
|
||||
const char * bi_special_op_name(enum bi_special_op op);
|
||||
|
|
|
|||
|
|
@ -82,22 +82,6 @@ bi_round_mode_name(enum bifrost_roundmode mod)
|
|||
}
|
||||
}
|
||||
|
||||
const char *
|
||||
bi_csel_cond_name(enum bifrost_csel_cond cond)
|
||||
{
|
||||
switch (cond) {
|
||||
case BIFROST_FEQ_F: return "feq.f";
|
||||
case BIFROST_FGT_F: return "fgt.f";
|
||||
case BIFROST_FGE_F: return "fge.f";
|
||||
case BIFROST_IEQ_F: return "ieq.f";
|
||||
case BIFROST_IGT_I: return "igt.i";
|
||||
case BIFROST_IGE_I: return "uge.i";
|
||||
case BIFROST_UGT_I: return "ugt.i";
|
||||
case BIFROST_UGE_I: return "uge.i";
|
||||
default: return "invalid";
|
||||
}
|
||||
}
|
||||
|
||||
const char *
|
||||
bi_interp_mode_name(enum bifrost_interp_mode mode)
|
||||
{
|
||||
|
|
@ -109,15 +93,3 @@ bi_interp_mode_name(enum bifrost_interp_mode mode)
|
|||
default: return ".unknown";
|
||||
}
|
||||
}
|
||||
|
||||
const char *
|
||||
bi_ldst_type_name(enum bifrost_ldst_type type)
|
||||
{
|
||||
switch (type) {
|
||||
case BIFROST_LDST_F16: return "f16";
|
||||
case BIFROST_LDST_F32: return "f32";
|
||||
case BIFROST_LDST_I32: return "i32";
|
||||
case BIFROST_LDST_U32: return "u32";
|
||||
default: return "invalid";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,8 +34,6 @@ const char * bi_clause_type_name(enum bifrost_clause_type T);
|
|||
const char * bi_output_mod_name(enum bifrost_outmod mod);
|
||||
const char * bi_minmax_mode_name(enum bifrost_minmax_mode mod);
|
||||
const char * bi_round_mode_name(enum bifrost_roundmode mod);
|
||||
const char * bi_csel_cond_name(enum bifrost_csel_cond cond);
|
||||
const char * bi_interp_mode_name(enum bifrost_interp_mode mode);
|
||||
const char * bi_ldst_type_name(enum bifrost_ldst_type type);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue