pan/bi: Rename NO_FP32_TRANSCENDENTALS quirk

Make it more obvious what the issue is. "_FAST" is not a suffix on
Bifrost.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Acked-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8894>
This commit is contained in:
Alyssa Rosenzweig 2021-01-15 16:38:20 -05:00 committed by Marge Bot
parent 0bdd4cbb57
commit 0219ecbfa0

View file

@ -34,11 +34,10 @@
#define BIFROST_NO_PRELOAD (1 << 0)
/* Whether this GPU lacks support for the _FAST family of opcodes for fast
* computation of special functions requiring lookup tables. Early GPUs require
* rather unweildly lowering mechanisms for thesr things. */
/* Whether this GPU lacks support for fp32 transcendentals, requiring backend
* lowering to low-precision lookup tables and polynomial approximation */
#define BIFROST_NO_FAST_OP (1 << 1)
#define BIFROST_NO_FP32_TRANSCENDENTALS (1 << 1)
static inline unsigned
bifrost_get_quirks(unsigned product_id)