OpenCL Queue Families extension 7/n

Update enum values to official ones
Delete redundant CL_DEVICE_NUM_QUEUE_FAMILIES_INTEL
Rename CL_QUEUE_CAPABILITY_ALL_INTEL to CL_QUEUE_DEFAULT_CAPABILITIES_INTEL
Add capabilities for cross queue events and single queue events
Add capabilities for buffer to image and image to buffer transfers

Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
Related-To: NEO-5120
This commit is contained in:
Maciej Dziuban
2020-12-08 12:40:04 +00:00
committed by Compute-Runtime-Automation
parent 05ab806126
commit 384e47f438
10 changed files with 53 additions and 51 deletions

View File

@@ -375,7 +375,7 @@ void ClDevice::initializeCaps() {
}
} else {
cl_queue_family_properties_intel properties;
properties.capabilities = CL_QUEUE_CAPABILITY_ALL_INTEL;
properties.capabilities = CL_QUEUE_DEFAULT_CAPABILITIES_INTEL;
properties.count = 1;
properties.properties = deviceInfo.queueOnHostProperties;
deviceInfo.queueFamilyProperties.push_back(properties);