whitespace
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 11 Oct 2023 11:18:09 +0000 (12:18 +0100)
committerAndrey Miroshnikov <andrey@technepisteme.xyz>
Wed, 18 Oct 2023 13:46:00 +0000 (13:46 +0000)
src/openpower/decoder/isa/test_caller_svp64_matrix.py

index d76da2ebbd60ae2cd8aec7cfcb6d0da8fda8ab14..bfd404a33d1ad0928519d587597bdf5b4c3e9862 100644 (file)
@@ -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)