| 165 | |
| 166 | struct KernelOptions { |
| 167 | KernelOptions(bool wrap, const string& indent, int data_type, const string& data_type_string, |
| 168 | const string& data_type_suffix, const int block_size[3], |
| 169 | bool use_local_memory, const size_t local_work_size[3]) |
| 170 | : wrap(wrap) |
| 171 | , indent(indent) |
| 172 | , data_type(data_type) |
| 173 | , data_type_string(data_type_string) |
| 174 | , data_type_suffix(data_type_suffix) |
| 175 | , block_size{ block_size[0], block_size[1], block_size[2] } |
| 176 | , use_local_memory(use_local_memory) |
| 177 | , local_work_size{ local_work_size[0], local_work_size[1], local_work_size[2] } |
| 178 | {} |
| 179 | bool wrap; |
| 180 | string indent; |
| 181 | int data_type; |
nothing calls this directly
no outgoing calls
no test coverage detected