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