(self, name, groupId, gpuId, tmpPath="./tmp")
| 281 | return self.getFileName("dcgm", groupId, gpuId, tmpPath) |
| 282 | |
| 283 | def getFileName(self, name, groupId, gpuId, tmpPath="./tmp"): |
| 284 | return os.path.join(tmpPath, f"{name}_{groupId}_{gpuId}.json") |
| 285 | |
| 286 | def getOpInfoDict(self, groupId, gpuId, tmpPath="./tmp"): |
| 287 | return self.getDict("opinfo", groupId, gpuId, tmpPath) |
no test coverage detected