| 161 | } |
| 162 | |
| 163 | void |
| 164 | KTest::declareKTestOptions(std::stringstream& ss) |
| 165 | { |
| 166 | ss << std::endl; |
| 167 | |
| 168 | ss << indent() << "const char PLATFORM_NAME[] = \"" |
| 169 | << platform_ << "\";" << std::endl; |
| 170 | ss << indent() << "const char DEVICE_NAME[] = \"" |
| 171 | << device_ << "\";" << std::endl; |
| 172 | ss << indent() << "const char BUILD_OPTIONS[] = \"" |
| 173 | << buildOptions_ << "\";" << std::endl; |
| 174 | ss << indent() << "const char KERNEL_SOURCE[] = \"" |
| 175 | << kernelSourceFile_ << "\";" << std::endl; |
| 176 | } |
| 177 | |
| 178 | void |
| 179 | KTest::declareBlasOptions(std::stringstream& ss, Step *step) |