From 83d5dd4d1bc0981d30309295f5bc4a9ad6dda869 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 9 Dec 2020 14:59:34 -0500 Subject: [PATCH] pan/bi: Remove reference to 64-bit RA 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 Part-of: --- src/panfrost/bifrost/bi_ra.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/panfrost/bifrost/bi_ra.c b/src/panfrost/bifrost/bi_ra.c index 3f12806a7cd..ab768aa59ef 100644 --- a/src/panfrost/bifrost/bi_ra.c +++ b/src/panfrost/bifrost/bi_ra.c @@ -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) {