MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / __init__

Method __init__

src/scripts/perf/blasPerformanceTesting.py:290–313  ·  view source on GitHub ↗
(self,
                 sizem, sizen, sizek,
                 lda, ldb, ldc,
                 offa, offb, offc,
                 device, order, transa, transb,
                 function, library, label,
                 gflops)

Source from the content-addressed store, hash-verified

288
289class BlasGraphPoint:
290 def __init__(self,
291 sizem, sizen, sizek,
292 lda, ldb, ldc,
293 offa, offb, offc,
294 device, order, transa, transb,
295 function, library, label,
296 gflops):
297 self.sizem = sizem
298 self.sizen = sizen
299 self.sizek = sizek
300 self.lda = lda
301 self.ldb = ldb
302 self.ldc = ldc
303 self.offa = offa
304 self.offb = offb
305 self.offc = offc
306 self.device = device
307 self.order = order
308 self.transa = transa
309 self.transb = transb
310 self.function = function
311 self.library = library
312 self.label = label
313 self.gflops = gflops
314
315 def __str__(self):
316 # ALL members must be represented here (x, y, z, batch, device, label, ldsfraction, etc)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected