| 66 | return self.x + 'x' + self.y + 'x' + self.z + ':' + self.batchsize + ', ' + self.device + ', LDS fraction = ' + self.ldsfraction + ' -- ' + self.label + '; ' + self.gflops |
| 67 | |
| 68 | class TableRow: |
| 69 | # parameters = class TestCombination instantiation |
| 70 | def __init__(self, parameters, gflops): |
| 71 | self.parameters = parameters |
| 72 | self.gflops = gflops |
| 73 | |
| 74 | def __str__(self): |
| 75 | return self.parameters.__str__() + '; ' + self.gflops |
| 76 | |
| 77 | def transformDimension(x,y,z): |
| 78 | if int(z) != 1: |