pan/bi: Remove reference to 64-bit RA
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Wed, 9 Dec 2020 19:59:34 +0000 (14:59 -0500)
committerAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Wed, 23 Dec 2020 17:48:06 +0000 (12:48 -0500)
Not something we plan to ever support on Bifrost. v7 needs 64-bit
lowered at the NIR level. The support for 64-bit clauses on v6 is iffy
and not worth worrying about at this point.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8215>

src/panfrost/bifrost/bi_ra.c

index 3f12806..ab768aa 100644 (file)
@@ -138,8 +138,6 @@ bi_adjust_src_ra(bi_instruction *ins, struct lcra_state *l, unsigned src)
 
                 nir_alu_type T = ins->src_types[src];
                 unsigned size = nir_alu_type_get_type_size(T);
-                /* TODO: 64-bit? */
                 unsigned components_per_word = MAX2(32 / size, 1);
 
                 for (unsigned i = 0; i < components; ++i) {