From acd140c2e20dfe9f18b7b442a7af79e0f221cb57 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 28 Feb 2020 07:25:07 -0500 Subject: [PATCH] pan/decode: Fix tiler weights printing Theoretical - still always zero. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/pandecode/decode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index b84a647..e5b7769 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -613,10 +613,10 @@ pandecode_midgard_tiler_descriptor( } if (nonzero_weights) { - pandecode_log(".weights = {"); + pandecode_log(".weights = { "); for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) { - pandecode_log("%d, ", t->weights[w]); + pandecode_log_cont("%d, ", t->weights[w]); } pandecode_log("},"); -- 2.7.4