(self)
| 338 | # CPPKE - default constructor |
| 339 | ############################################################################## |
| 340 | def __init__(self): |
| 341 | self.fileName = Common.getIncludePath() + "AutoGemmKernelEnumeration.h" |
| 342 | self.kernelStr = "" |
| 343 | self.tileStr = "" |
| 344 | self.nonTileStr = "" |
| 345 | self.kernelCount = 0 |
| 346 | self.tileCount = 0 |
| 347 | self.nonTileCount = 0 |
| 348 | self.precision = "" |
| 349 | self.precisionInitialized = False |
| 350 | |
| 351 | def newPrecision(self, precision): |
| 352 | if self.precisionInitialized: |
nothing calls this directly
no outgoing calls
no test coverage detected