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

Function printTestParams

src/tests/common.cpp:90–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90void
91printTestParams(
92 clblasOrder order,
93 clblasTranspose transA,
94 clblasTranspose transB,
95 size_t M,
96 size_t N,
97 size_t K,
98 bool useAlpha,
99 ComplexLong alpha,
100 size_t offA,
101 size_t lda,
102 size_t offB,
103 size_t ldb,
104 bool useBeta,
105 ComplexLong beta,
106 size_t offC,
107 size_t ldc)
108{
109 ::std::cerr
110 << orderStr(order) << ", "
111 << transStr(transA) << ", "
112 << transStr(transB) << ", "
113 << "M = " << M << ", "
114 << "N = " << N << ", "
115 << "K = " << K << ", "
116 << "offA = " << offA << ", "
117 << "offB = " << offB << ", "
118 << "offC = " << offC << ", "
119 << "lda = " << lda << ", "
120 << "ldb = " << ldb << ", "
121 << "ldc = " << ldc;
122 if (useAlpha) {
123 ::std::cerr << ", "
124 << "alpha = (" << alpha.re << "," << alpha.imag << ")";
125 }
126 if (useBeta) {
127 ::std::cerr << ", "
128 << "beta = (" << beta.re << "," << beta.imag << ")";
129 }
130 ::std::cerr << std::endl;
131}
132
133void
134printTestParams(

Callers 15

herCorrectnessTestFunction · 0.85
swapCorrectnessTestFunction · 0.85
trmvCorrectnessTestFunction · 0.85
scalCorrectnessTestFunction · 0.85
iamaxCorrectnessTestFunction · 0.85
trsvCorrectnessTestFunction · 0.85
gbmvCorrectnessTestFunction · 0.85
syr2kCorrectnessTestFunction · 0.85
rotgCorrectnessTestFunction · 0.85
tbmvCorrectnessTestFunction · 0.85
rotCorrectnessTestFunction · 0.85
dotcCorrectnessTestFunction · 0.85

Calls 5

orderStrFunction · 0.85
transStrFunction · 0.85
sideStrFunction · 0.85
uploStrFunction · 0.85
diagStrFunction · 0.85

Tested by

no test coverage detected