@@ -190,22 +190,22 @@ def dense2(x):
190190
191191 name = f'{ group } /{ name } '
192192 print (f'{ bold (name )} (avg row length: { avg_row_len :.2f} ):' )
193- print ('\t ' .join ([' ' ] + [f'{ size :>5} ' for size in sizes ]))
194- print ('\t ' .join ([bold ('SCA1_R ' )] +
193+ print ('\t ' .join ([' ' ] + [f'{ size :>5} ' for size in sizes ]))
194+ print ('\t ' .join ([bold ('SCA1_ROW ' )] +
195195 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t1 , winner [0 ])]))
196- print ('\t ' .join ([bold ('SCA1_C ' )] +
196+ print ('\t ' .join ([bold ('SCA1_COL ' )] +
197197 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t2 , winner [1 ])]))
198- print ('\t ' .join ([bold ('SCA2_R ' )] +
198+ print ('\t ' .join ([bold ('SCA2_ROW ' )] +
199199 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t3 , winner [2 ])]))
200- print ('\t ' .join ([bold ('SCA2_C ' )] +
200+ print ('\t ' .join ([bold ('SCA2_COL ' )] +
201201 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t4 , winner [3 ])]))
202- print ('\t ' .join ([bold ('SEG_COO' )] +
202+ print ('\t ' .join ([bold ('SEG_COO ' )] +
203203 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t5 , winner [4 ])]))
204- print ('\t ' .join ([bold ('SEG_CSR' )] +
204+ print ('\t ' .join ([bold ('SEG_CSR ' )] +
205205 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t6 , winner [5 ])]))
206- print ('\t ' .join ([bold ('DENSE1 ' )] +
206+ print ('\t ' .join ([bold ('DENSE1 ' )] +
207207 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t7 , winner [6 ])]))
208- print ('\t ' .join ([bold ('DENSE2 ' )] +
208+ print ('\t ' .join ([bold ('DENSE2 ' )] +
209209 [bold (f'{ t :.5f} ' , f ) for t , f in zip (t8 , winner [7 ])]))
210210 print ()
211211
0 commit comments