| 181 | } |
| 182 | |
| 183 | std::string |
| 184 | Step::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 | |
| 206 | std::string |
| 207 | Step::dumpKextra() |
nothing calls this directly
no outgoing calls
no test coverage detected