| 223 | } |
| 224 | |
| 225 | Status CreateKernel(const std::string& code, const std::string& function_name, |
| 226 | Environment* env, CLKernel* result) { |
| 227 | return CreateKernel(code, function_name, {}, env, result); |
| 228 | } |
| 229 | |
| 230 | Status CreateKernel(const std::string& code, const std::string& function_name, |
| 231 | const std::vector<CompilerOptions>& compiler_options, |
no test coverage detected