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