From 247b97fe077cba1ab753218ea4d88a00e97c0d30 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 11 Oct 2023 12:19:32 +0100 Subject: [PATCH] simplify matmult test code --- src/openpower/decoder/isa/test_caller_svp64_matrix.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/openpower/decoder/isa/test_caller_svp64_matrix.py b/src/openpower/decoder/isa/test_caller_svp64_matrix.py index bfd404a3..31518f44 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_matrix.py +++ b/src/openpower/decoder/isa/test_caller_svp64_matrix.py @@ -15,9 +15,7 @@ from openpower.insndb.asm import SVP64Asm # x = [[1,2,3],[4,5,6],[7,8,9],[10,11,12]] # y = [[1,2],[1,2],[3,4]] def matmult(a, b): - zip_b = zip(*b) - # uncomment next line if python 3 : - zip_b = list(zip_b) + zip_b = list(zip(*b)) # transpose b matrix return [[sum(ele_a*ele_b for ele_a, ele_b in zip(row_a, col_b)) for col_b in zip_b] for row_a in a] -- 2.30.2