| 187 | } |
| 188 | |
| 189 | const device_function::function_entry* opencl_function::get_function_entry(const device& dev) const { |
| 190 | if (const auto iter = functions.find((const opencl_device*)&dev); iter != functions.end()) { |
| 191 | return &iter->second; |
| 192 | } |
| 193 | return nullptr; |
| 194 | } |
| 195 | |
| 196 | } // namespace fl |
| 197 |