(self)
| 60 | self.problemsize = str(int(self.x) * int(self.y) * int(self.z) * int(self.batchsize)) |
| 61 | |
| 62 | def __str__(self): |
| 63 | # ALL members must be represented here (x, y, z, batch, device, label, etc) |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected