(library_name, target_abi, device)
| 300 | |
| 301 | |
| 302 | def get_opencl_binary_output_path(library_name, target_abi, device): |
| 303 | target_soc = device.target_socs |
| 304 | device_name = device.device_name |
| 305 | return '%s/%s/%s/%s/%s_%s.%s.%s.bin' % \ |
| 306 | (BUILD_OUTPUT_DIR, |
| 307 | library_name, |
| 308 | OUTPUT_OPENCL_BINARY_DIR_NAME, |
| 309 | target_abi, |
| 310 | library_name, |
| 311 | OUTPUT_OPENCL_BINARY_FILE_NAME, |
| 312 | device_name, |
| 313 | target_soc) |
| 314 | |
| 315 | |
| 316 | def get_opencl_parameter_output_path(library_name, target_abi, device): |
no outgoing calls
no test coverage detected