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

Method dumpPgran

src/library/tools/ktest/step-dump.cpp:183–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181}
182
183std::string
184Step::dumpPgran()
185{
186 std::stringstream ss;
187 const PGranularity *pgran = &step_.pgran;
188
189 if (pgran == NULL) {
190 return ss.str();
191 }
192
193 ss << " wgDim = " << pgran->wgDim << std::endl;
194 ss << " wgSize = (";
195 for (unsigned int i = 0; i < pgran->wgDim; i++) {
196 if (i != 0) {
197 ss << ", ";
198 }
199 ss << pgran->wgSize[i];
200 }
201 ss << ")" << std::endl;
202 ss << " wfSize = " << pgran->wfSize << std::endl;
203 return ss.str();
204}
205
206std::string
207Step::dumpKextra()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected