From: Luke Kenneth Casson Leighton Date: Wed, 11 Oct 2023 11:18:09 +0000 (+0100) Subject: whitespace X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3fd69bdffdd886c4f395f111029d7922f989ccb;p=openpower-isa.git whitespace --- diff --git a/src/openpower/decoder/isa/test_caller_svp64_matrix.py b/src/openpower/decoder/isa/test_caller_svp64_matrix.py index d76da2eb..bfd404a3 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_matrix.py +++ b/src/openpower/decoder/isa/test_caller_svp64_matrix.py @@ -14,7 +14,7 @@ from openpower.insndb.asm import SVP64Asm # Example values # x = [[1,2,3],[4,5,6],[7,8,9],[10,11,12]] # y = [[1,2],[1,2],[3,4]] -def matmult(a,b): +def matmult(a, b): zip_b = zip(*b) # uncomment next line if python 3 : zip_b = list(zip_b)