Module: Mesa Branch: master Commit: b5c79e6d9fde89675c1dfff4b5a211d09f41bf8c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b5c79e6d9fde89675c1dfff4b5a211d09f41bf8c
Author: Alyssa Rosenzweig <[email protected]> Date: Fri Feb 5 21:53:11 2021 -0500 pan/bi: Lower transcendentals on G71 Signed-off-by: Alyssa Rosenzweig <[email protected]> Acked-by: Boris Brezillon <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8894> --- src/panfrost/bifrost/bi_quirks.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/panfrost/bifrost/bi_quirks.h b/src/panfrost/bifrost/bi_quirks.h index f21a99bdaf3..5d600c1c040 100644 --- a/src/panfrost/bifrost/bi_quirks.h +++ b/src/panfrost/bifrost/bi_quirks.h @@ -43,6 +43,8 @@ static inline unsigned bifrost_get_quirks(unsigned product_id) { switch (product_id >> 8) { + case 0x60: + return BIFROST_NO_PRELOAD | BIFROST_NO_FP32_TRANSCENDENTALS; case 0x62: return BIFROST_NO_PRELOAD; case 0x70: _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
