MCPcopy Create free account
hub / github.com/clMathLibraries/clFFT / TestCombination

Class TestCombination

src/scripts/perf/fftPerformanceTesting.py:28–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26tableHeader = 'lengthx,lengthy,lengthz,batch,device,inlay,outlay,place,precision,label,GFLOPS'
27
28class TestCombination:
29 def __init__(self,
30 lengthx, lengthy, lengthz, batchsize,
31 device, inlayout, outlayout, placeness, precision,
32 label):
33 self.x = lengthx
34 self.y = lengthy
35 self.z = lengthz
36 self.batchsize = batchsize
37 self.device = device
38 self.inlayout = inlayout
39 self.outlayout = outlayout
40 self.placeness = placeness
41 self.precision = precision
42 self.label = label
43
44 def __str__(self):
45 return self.x + 'x' + self.y + 'x' + self.z + ':' + self.batchsize + ', ' + self.device + ', ' + self.inlayout + '/' + self.outlayout + ', ' + self.placeness + ', ' + self.precision + ' -- ' + self.label
46
47class GraphPoint:
48 def __init__(self,

Callers 2

plotFromDataFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected