From: Luke Kenneth Casson Leighton Date: Wed, 11 Oct 2023 11:43:48 +0000 (+0100) Subject: remove cruft, make comments clearer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3b4efd0cdc8d29850397dcba3850a8f4e862c026;p=openpower-isa.git remove cruft, make comments clearer --- diff --git a/src/openpower/decoder/isa/test_caller_svp64_matrix.py b/src/openpower/decoder/isa/test_caller_svp64_matrix.py index 9dc1ff9c..f7d55cc3 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_matrix.py +++ b/src/openpower/decoder/isa/test_caller_svp64_matrix.py @@ -73,17 +73,11 @@ class DecoderTestCase(FHDLTestCase): #result1 = [0] * (ydim1*xdim2) res = [] - # store FPs + # store GPR x-flattened and y-flattened in GPRs for i, x in enumerate(xf): gprs[i+16] = x # X matrix for i, y in enumerate(yf): gprs[i+32] = y # Y matrix - continue - # t = DOUBLE2SINGLE(fp64toselectable(t)) # convert to Power single - # u = DOUBLE2SINGLE(fp64toselectable(u)) # from double - #res.append((t, u)) - # print ("FFT", i, "in", a, b, "coeff", c, "mul", - # mul, "res", t, u) with Program(lst, bigendian=False) as program: sim = self.run_tst_program(program, initial_regs=gprs)