Commit b300dc52 by John Plate Committed by Commit Bot

CL: device partitioning for front end and passthrough

Partitioning is the creation of sub-devices. Also add reference counting for CL objects, which is needed now for sub-devices. Also fix CL print format strings, since cl_ulong is actually always 64 bit and not unsigned long. Bug: angleproject:5904 Change-Id: I006699fad2f953ce312bca87c9b6362b5d77a18a Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2880665 Commit-Queue: John Plate <jplate@google.com> Reviewed-by: 's avatarCody Northrop <cnorthrop@google.com> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent b0d39ba2
......@@ -37,6 +37,9 @@ struct Dispatch
constexpr const cl_icd_dispatch &getDispatch() { return *mDispatch; }
protected:
bool isCompatible(void *ptr) const { return ptr == &mDispatch; }
private:
// This has to be the first member to be OpenCL ICD compatible
const cl_icd_dispatch *const mDispatch;
......
......@@ -10,7 +10,7 @@
"scripts/entry_point_packed_gl_enums.json":
"4f7b43863a5e61991bba4010db463679",
"scripts/generate_entry_points.py":
"de7a2201b2a550bf1e890b9941e9ad57",
"a749fa006d3da248f415b07e4b9ecf35",
"scripts/gl.xml":
"2a73a58a7e26d8676a2c0af6d528cae6",
"scripts/gl_angle_ext.xml":
......@@ -130,7 +130,7 @@
"src/libGLESv2/egl_stubs_autogen.h":
"6439daa350c1663e71dd0af37dcc91df",
"src/libGLESv2/entry_points_cl_autogen.cpp":
"4e7af65ebb7f126992adcf932a5b3060",
"2b2176bb17ed88bdb5aa2d6e9424608f",
"src/libGLESv2/entry_points_cl_autogen.h":
"dde2f94c3004874a7da995dae69da811",
"src/libGLESv2/entry_points_egl_autogen.cpp":
......
......@@ -699,8 +699,8 @@ FORMAT_DICT = {
"cl_ushort": "%hu",
"cl_int": "%d",
"cl_uint": "%u",
"cl_long": "%ld",
"cl_ulong": "%lu",
"cl_long": "%lld",
"cl_ulong": "%llu",
"cl_half": "%hu",
"cl_float": "%f",
"cl_double": "%f",
......@@ -714,37 +714,37 @@ FORMAT_DICT = {
"cl_event": POINTER_FORMAT,
"cl_sampler": POINTER_FORMAT,
"cl_bool": "%u",
"cl_bitfield": "%lu",
"cl_properties": "%lu",
"cl_device_type": "%lu",
"cl_bitfield": "%llu",
"cl_properties": "%llu",
"cl_device_type": "%llu",
"cl_platform_info": "%u",
"cl_device_info": "%u",
"cl_device_fp_config": "%lu",
"cl_device_fp_config": "%llu",
"cl_device_mem_cache_type": "%u",
"cl_device_local_mem_type": "%u",
"cl_device_exec_capabilities": "%lu",
"cl_device_svm_capabilities": "%lu",
"cl_command_queue_properties": "%lu",
"cl_device_exec_capabilities": "%llu",
"cl_device_svm_capabilities": "%llu",
"cl_command_queue_properties": "%llu",
"cl_device_partition_property": "%zu",
"cl_device_affinity_domain": "%lu",
"cl_device_affinity_domain": "%llu",
"cl_context_properties": "%zu",
"cl_context_info": "%u",
"cl_queue_properties": "%lu",
"cl_queue_properties": "%llu",
"cl_command_queue_info": "%u",
"cl_channel_order": "%u",
"cl_channel_type": "%u",
"cl_mem_flags": "%lu",
"cl_svm_mem_flags": "%lu",
"cl_mem_flags": "%llu",
"cl_svm_mem_flags": "%llu",
"cl_mem_object_type": "%u",
"cl_mem_info": "%u",
"cl_mem_migration_flags": "%lu",
"cl_mem_properties": "%lu",
"cl_mem_migration_flags": "%llu",
"cl_mem_properties": "%llu",
"cl_image_info": "%u",
"cl_buffer_create_type": "%u",
"cl_addressing_mode": "%u",
"cl_filter_mode": "%u",
"cl_sampler_info": "%u",
"cl_map_flags": "%lu",
"cl_map_flags": "%llu",
"cl_pipe_properties": "%zu",
"cl_pipe_info": "%u",
"cl_program_info": "%u",
......@@ -755,18 +755,18 @@ FORMAT_DICT = {
"cl_kernel_arg_info": "%u",
"cl_kernel_arg_address_qualifier": "%u",
"cl_kernel_arg_access_qualifier": "%u",
"cl_kernel_arg_type_qualifier": "%lu",
"cl_kernel_arg_type_qualifier": "%llu",
"cl_kernel_work_group_info": "%u",
"cl_kernel_sub_group_info": "%u",
"cl_event_info": "%u",
"cl_command_type": "%u",
"cl_profiling_info": "%u",
"cl_sampler_properties": "%lu",
"cl_sampler_properties": "%llu",
"cl_kernel_exec_info": "%u",
"cl_device_atomic_capabilities": "%lu",
"cl_device_atomic_capabilities": "%llu",
"cl_khronos_vendor_id": "%u",
"cl_version": "%u",
"cl_device_device_enqueue_capabilities": "%lu",
"cl_device_device_enqueue_capabilities": "%llu",
}
TEMPLATE_HEADER_INCLUDES = """\
......
......@@ -8,12 +8,31 @@
#include "libANGLE/CLDevice.h"
#include "libANGLE/CLPlatform.h"
#include "libANGLE/Debug.h"
namespace cl
{
Device::~Device() = default;
Device::~Device()
{
if (isRoot())
{
removeRef();
}
}
bool Device::release()
{
if (isRoot())
{
return false;
}
const bool released = removeRef();
if (released)
{
mParent->destroySubDevice(this);
}
return released;
}
cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *valueSizeRet)
{
......@@ -94,7 +113,6 @@ cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *v
case DeviceInfo::NumericVersion:
case DeviceInfo::PreferredInteropUserSync:
case DeviceInfo::PartitionMaxSubDevices:
case DeviceInfo::ReferenceCount:
case DeviceInfo::PreferredPlatformAtomicAlignment:
case DeviceInfo::PreferredGlobalAtomicAlignment:
case DeviceInfo::PreferredLocalAtomicAlignment:
......@@ -161,7 +179,6 @@ cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *v
case DeviceInfo::Profile:
case DeviceInfo::Version:
case DeviceInfo::OpenCL_C_Version:
case DeviceInfo::Extensions:
case DeviceInfo::LatestConformanceVersionPassed:
result = mImpl->getInfoStringLength(name, &copySize);
if (result != CL_SUCCESS)
......@@ -173,7 +190,7 @@ cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *v
copyValue = valString.data();
break;
// Handle all array types
// Handle all cached values
case DeviceInfo::MaxWorkItemDimensions:
valUInt = static_cast<cl_uint>(mInfo.mMaxWorkItemSizes.size());
copyValue = &valUInt;
......@@ -220,6 +237,10 @@ cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *v
copySize = mInfo.mOpenCL_C_Features.size() *
sizeof(decltype(mInfo.mOpenCL_C_Features)::value_type);
break;
case DeviceInfo::Extensions:
copyValue = mInfo.mExtensions.c_str();
copySize = mInfo.mExtensions.length() + 1u;
break;
case DeviceInfo::ExtensionsWithVersion:
if (!mInfo.mIsSupportedExtensionsWithVersion)
{
......@@ -240,7 +261,7 @@ cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *v
mInfo.mPartitionType.size() * sizeof(decltype(mInfo.mPartitionType)::value_type);
break;
// Handle all special types
// Handle all mapped values
case DeviceInfo::Platform:
valPointer = &mPlatform;
copyValue = &valPointer;
......@@ -250,6 +271,10 @@ cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *v
copyValue = &mParent;
copySize = sizeof(mParent);
break;
case DeviceInfo::ReferenceCount:
copyValue = getRefCountPtr();
copySize = sizeof(*getRefCountPtr());
break;
default:
WARN() << "CL device info " << name << " is not (yet) supported";
......@@ -278,6 +303,29 @@ cl_int Device::getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *v
return CL_SUCCESS;
}
cl_int Device::createSubDevices(const cl_device_partition_property *properties,
cl_uint numDevices,
Device **devices,
cl_uint *numDevicesRet)
{
if (devices == nullptr)
{
numDevices = 0u;
}
rx::CLDeviceImpl::InitList initList;
const cl_int result = mImpl->createSubDevices(properties, numDevices, initList, numDevicesRet);
if (result == CL_SUCCESS)
{
while (!initList.empty())
{
mSubDevices.emplace_back(new Device(mPlatform, this, initList.front()));
*devices++ = mSubDevices.back().get();
initList.pop_front();
}
}
return result;
}
Device::PtrList Device::CreateDevices(Platform &platform, rx::CLDeviceImpl::InitList &&initList)
{
PtrList devices;
......@@ -305,4 +353,22 @@ Device::Device(Platform &platform, Device *parent, rx::CLDeviceImpl::InitData &i
mInfo(std::move(initData.second))
{}
void Device::destroySubDevice(Device *device)
{
auto deviceIt = mSubDevices.cbegin();
while (deviceIt != mSubDevices.cend() && deviceIt->get() != device)
{
++deviceIt;
}
if (deviceIt != mSubDevices.cend())
{
mSubDevices.erase(deviceIt);
release();
}
else
{
ERR() << "Sub-device not found";
}
}
} // namespace cl
......@@ -24,11 +24,20 @@ class Device final : public _cl_device_id, public Object
~Device();
Platform &getPlatform() const;
bool isRoot() const;
bool hasSubDevice(const Device *device) const;
cl_int getInfoULong(DeviceInfo name, cl_ulong *value) const;
void retain();
bool release();
cl_int getInfoULong(DeviceInfo name, cl_ulong *value) const;
cl_int getInfo(DeviceInfo name, size_t valueSize, void *value, size_t *valueSizeRet);
cl_int createSubDevices(const cl_device_partition_property *properties,
cl_uint numDevices,
Device **devices,
cl_uint *numDevicesRet);
static PtrList CreateDevices(Platform &platform, rx::CLDeviceImpl::InitList &&initList);
static bool IsValid(const Device *device);
......@@ -37,10 +46,14 @@ class Device final : public _cl_device_id, public Object
private:
Device(Platform &platform, Device *parent, rx::CLDeviceImpl::InitData &initData);
void destroySubDevice(Device *device);
Platform &mPlatform;
Device *const mParent;
const rx::CLDeviceImpl::Ptr mImpl;
const rx::CLDeviceImpl::Info mInfo;
PtrList mSubDevices;
};
inline Platform &Device::getPlatform() const
......@@ -48,6 +61,26 @@ inline Platform &Device::getPlatform() const
return mPlatform;
}
inline bool Device::isRoot() const
{
return mParent == nullptr;
}
inline bool Device::hasSubDevice(const Device *device) const
{
return std::find_if(mSubDevices.cbegin(), mSubDevices.cend(), [=](const Device::Ptr &ptr) {
return ptr.get() == device || ptr->hasSubDevice(device);
}) != mSubDevices.cend();
}
inline void Device::retain()
{
if (!isRoot())
{
addRef();
}
}
inline cl_int Device::getInfoULong(DeviceInfo name, cl_ulong *value) const
{
return mImpl->getInfoULong(name, value);
......
......@@ -10,14 +10,32 @@
#include "libANGLE/renderer/CLtypes.h"
#include "libANGLE/Debug.h"
namespace cl
{
class Object
{
public:
constexpr Object() {}
~Object() = default;
// This class cannot be virtual as its derived classes need to have standard layout
Object() = default;
~Object() { ASSERT(mRefCount == 0u); }
cl_uint getRefCount() { return mRefCount; }
const cl_uint *getRefCountPtr() { return &mRefCount; }
protected:
void addRef() { ++mRefCount; }
bool removeRef()
{
ASSERT(mRefCount > 0u);
return --mRefCount == 0u;
}
private:
cl_uint mRefCount = 1u;
};
} // namespace cl
......
......@@ -7,6 +7,7 @@
#include "libANGLE/CLPlatform.h"
#include <cstdint>
#include <cstring>
namespace cl
......@@ -24,7 +25,10 @@ bool IsDeviceTypeMatch(cl_device_type select, cl_device_type type)
}
} // namespace
Platform::~Platform() = default;
Platform::~Platform()
{
removeRef();
}
cl_int Platform::getInfo(PlatformInfo name, size_t valueSize, void *value, size_t *sizeRet)
{
......@@ -139,7 +143,9 @@ Platform::Platform(const cl_icd_dispatch &dispatch,
mImpl(std::move(initData.first)),
mInfo(std::move(initData.second)),
mDevices(Device::CreateDevices(*this, std::move(deviceInitList)))
{}
{
ASSERT(isCompatible(this));
}
constexpr char Platform::kVendor[];
constexpr char Platform::kIcdSuffix[];
......
......@@ -62,7 +62,7 @@ class Platform final : public _cl_platform_id, public Object
inline bool Platform::hasDevice(const Device *device) const
{
return std::find_if(mDevices.cbegin(), mDevices.cend(), [=](const Device::Ptr &ptr) {
return ptr.get() == device;
return ptr.get() == device || ptr->hasSubDevice(device);
}) != mDevices.cend();
}
......
......@@ -34,6 +34,7 @@ class CLDeviceImpl : angle::NonCopyable
NameVersionVector mBuiltInKernelsWithVersion;
NameVersionVector mOpenCL_C_AllVersions;
NameVersionVector mOpenCL_C_Features;
std::string mExtensions;
NameVersionVector mExtensionsWithVersion;
std::vector<cl_device_partition_property> mPartitionProperties;
std::vector<cl_device_partition_property> mPartitionType;
......@@ -57,6 +58,11 @@ class CLDeviceImpl : angle::NonCopyable
virtual cl_int getInfoSizeT(cl::DeviceInfo name, size_t *value) const = 0;
virtual cl_int getInfoStringLength(cl::DeviceInfo name, size_t *value) const = 0;
virtual cl_int getInfoString(cl::DeviceInfo name, size_t size, char *value) const = 0;
virtual cl_int createSubDevices(const cl_device_partition_property *properties,
cl_uint numDevices,
InitList &deviceInitList,
cl_uint *numDevicesRet) = 0;
};
} // namespace rx
......
......@@ -15,6 +15,8 @@ _cl_backend_sources = [
"CLDeviceCL.h",
"CLPlatformCL.cpp",
"CLPlatformCL.h",
"cl_util.cpp",
"cl_util.h",
]
config("angle_cl_backend_config") {
......
......@@ -7,14 +7,21 @@
#include "libANGLE/renderer/cl/CLDeviceCL.h"
#include "libANGLE/renderer/cl/cl_util.h"
#include "libANGLE/Debug.h"
namespace rx
{
CLDeviceCL::CLDeviceCL(cl_device_id device) : mDevice(device) {}
CLDeviceCL::~CLDeviceCL() = default;
CLDeviceCL::~CLDeviceCL()
{
if (mVersion >= CL_MAKE_VERSION(1, 2, 0) &&
mDevice->getDispatch().clReleaseDevice(mDevice) != CL_SUCCESS)
{
ERR() << "Error while releasing CL device";
}
}
cl_int CLDeviceCL::getInfoUInt(cl::DeviceInfo name, cl_uint *value) const
{
......@@ -45,9 +52,55 @@ cl_int CLDeviceCL::getInfoString(cl::DeviceInfo name, size_t size, char *value)
nullptr);
}
cl_int CLDeviceCL::createSubDevices(const cl_device_partition_property *properties,
cl_uint numDevices,
InitList &deviceInitList,
cl_uint *numDevicesRet)
{
if (mVersion < CL_MAKE_VERSION(1, 2, 0))
{
return CL_INVALID_VALUE;
}
if (numDevices == 0u)
{
return mDevice->getDispatch().clCreateSubDevices(mDevice, properties, 0u, nullptr,
numDevicesRet);
}
std::vector<cl_device_id> devices(numDevices, nullptr);
const cl_int result = mDevice->getDispatch().clCreateSubDevices(mDevice, properties, numDevices,
devices.data(), nullptr);
if (result == CL_SUCCESS)
{
for (cl_device_id device : devices)
{
CLDeviceImpl::Ptr impl(CLDeviceCL::Create(device));
CLDeviceImpl::Info info = CLDeviceCL::GetInfo(device);
if (impl && info.isValid())
{
deviceInitList.emplace_back(std::move(impl), std::move(info));
}
}
if (deviceInitList.size() != devices.size())
{
return CL_INVALID_VALUE;
}
}
return result;
}
#define ANGLE_GET_INFO_SIZE(name, size_ret) \
device->getDispatch().clGetDeviceInfo(device, name, 0u, nullptr, size_ret)
#define ANGLE_GET_INFO_SIZE_RET(name, size_ret) \
do \
{ \
if (ANGLE_GET_INFO_SIZE(name, size_ret) != CL_SUCCESS) \
{ \
ERR() << "Failed to query CL device info for " << name; \
return info; \
} \
} while (0)
#define ANGLE_GET_INFO(name, size, param) \
device->getDispatch().clGetDeviceInfo(device, name, size, param, nullptr)
......@@ -61,10 +114,29 @@ cl_int CLDeviceCL::getInfoString(cl::DeviceInfo name, size_t size, char *value)
} \
} while (0)
CLDeviceCL *CLDeviceCL::Create(cl_device_id device)
{
size_t valueSize = 0u;
if (ANGLE_GET_INFO_SIZE(CL_DEVICE_VERSION, &valueSize) == CL_SUCCESS)
{
std::vector<char> valString(valueSize, '\0');
if (ANGLE_GET_INFO(CL_DEVICE_VERSION, valueSize, valString.data()) == CL_SUCCESS)
{
const cl_version version = ExtractCLVersion(valString.data());
if (version != 0u)
{
return new CLDeviceCL(device, version);
}
}
}
return nullptr;
}
CLDeviceImpl::Info CLDeviceCL::GetInfo(cl_device_id device)
{
Info info;
size_t valueSize = 0u;
std::vector<char> valString;
if (ANGLE_GET_INFO_SIZE(CL_DEVICE_ILS_WITH_VERSION, &valueSize) == CL_SUCCESS &&
(valueSize % sizeof(decltype(info.mILsWithVersion)::value_type)) == 0u)
......@@ -103,6 +175,12 @@ CLDeviceImpl::Info CLDeviceCL::GetInfo(cl_device_id device)
info.mIsSupportedOpenCL_C_Features = true;
}
ANGLE_GET_INFO_SIZE_RET(CL_DEVICE_EXTENSIONS, &valueSize);
valString.resize(valueSize, '\0');
ANGLE_GET_INFO_RET(CL_DEVICE_EXTENSIONS, valueSize, valString.data());
info.mExtensions.assign(valString.data());
RemoveUnsupportedCLExtensions(info.mExtensions);
if (ANGLE_GET_INFO_SIZE(CL_DEVICE_EXTENSIONS_WITH_VERSION, &valueSize) == CL_SUCCESS &&
(valueSize % sizeof(decltype(info.mExtensionsWithVersion)::value_type)) == 0u)
{
......@@ -110,6 +188,7 @@ CLDeviceImpl::Info CLDeviceCL::GetInfo(cl_device_id device)
valueSize / sizeof(decltype(info.mExtensionsWithVersion)::value_type));
ANGLE_GET_INFO_RET(CL_DEVICE_EXTENSIONS_WITH_VERSION, valueSize,
info.mExtensionsWithVersion.data());
RemoveUnsupportedCLExtensions(info.mExtensionsWithVersion);
info.mIsSupportedExtensionsWithVersion = true;
}
......@@ -141,4 +220,7 @@ CLDeviceImpl::Info CLDeviceCL::GetInfo(cl_device_id device)
return info;
}
CLDeviceCL::CLDeviceCL(cl_device_id device, cl_version version) : mDevice(device), mVersion(version)
{}
} // namespace rx
......@@ -16,7 +16,6 @@ namespace rx
class CLDeviceCL : public CLDeviceImpl
{
public:
explicit CLDeviceCL(cl_device_id device);
~CLDeviceCL() override;
cl_device_id getNative();
......@@ -27,10 +26,19 @@ class CLDeviceCL : public CLDeviceImpl
cl_int getInfoStringLength(cl::DeviceInfo name, size_t *value) const override;
cl_int getInfoString(cl::DeviceInfo name, size_t size, char *value) const override;
cl_int createSubDevices(const cl_device_partition_property *properties,
cl_uint numDevices,
InitList &deviceInitList,
cl_uint *numDevicesRet) override;
static CLDeviceCL *Create(cl_device_id device);
static Info GetInfo(cl_device_id device);
private:
CLDeviceCL(cl_device_id device, cl_version version);
const cl_device_id mDevice;
const cl_version mVersion;
};
inline cl_device_id CLDeviceCL::getNative()
......
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// cl_utils.cpp: Helper functions for the CL back end
#include "libANGLE/renderer/cl/cl_util.h"
#include "libANGLE/Debug.h"
#include <cstdlib>
namespace rx
{
cl_version ExtractCLVersion(const std::string &version)
{
const std::string::size_type spacePos = version.find(' ');
const std::string::size_type dotPos = version.find('.');
if (spacePos == std::string::npos || dotPos == std::string::npos)
{
ERR() << "Failed to extract version from OpenCL version string: " << version;
return 0u;
}
const long major = std::strtol(&version[spacePos + 1u], nullptr, 10);
const long minor = std::strtol(&version[dotPos + 1u], nullptr, 10);
if (major < 1 || major > 9 || minor < 0 || minor > 9)
{
ERR() << "Failed to extract version from OpenCL version string: " << version;
return 0u;
}
return CL_MAKE_VERSION(static_cast<cl_uint>(major), static_cast<cl_uint>(minor), 0);
}
void RemoveUnsupportedCLExtensions(std::string &extensions)
{
if (extensions.empty())
{
return;
}
using SizeT = std::string::size_type;
SizeT extStart = 0u;
SizeT spacePos = extensions.find(' ');
// Remove all unsupported extensions which are terminated by a space
while (spacePos != std::string::npos)
{
const SizeT length = spacePos - extStart;
if (IsCLExtensionSupported(extensions.substr(extStart, length)))
{
extStart = spacePos + 1u;
}
else
{
extensions.erase(extStart, length + 1u);
}
spacePos = extensions.find(' ', extStart);
}
// Remove last extension in string, if exists and unsupported
if (extStart < extensions.length())
{
const SizeT length = extensions.length() - extStart;
if (!IsCLExtensionSupported(extensions.substr(extStart, length)))
{
extensions.erase(extStart, length);
}
}
// Remove trailing spaces
while (!extensions.empty() && extensions.back() == ' ')
{
extensions.pop_back();
}
}
void RemoveUnsupportedCLExtensions(NameVersionVector &extensions)
{
auto extIt = extensions.cbegin();
while (extIt != extensions.cend())
{
if (IsCLExtensionSupported(extIt->name))
{
++extIt;
}
else
{
extIt = extensions.erase(extIt);
}
}
}
} // namespace rx
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// cl_util.h: Helper functions for the CL back end
#ifndef LIBANGLE_RENDERER_CL_CL_UTIL_H_
#define LIBANGLE_RENDERER_CL_CL_UTIL_H_
#include "libANGLE/renderer/CLtypes.h"
#include "anglebase/no_destructor.h"
#include <string>
#include <unordered_set>
#define ANGLE_SUPPORTED_OPENCL_EXTENSIONS "cl_khr_extended_versioning", "cl_khr_icd"
namespace rx
{
// Extract numeric version from OpenCL version string
cl_version ExtractCLVersion(const std::string &version);
using CLExtensionSet = std::unordered_set<std::string>;
// Get a set of OpenCL extensions which are supported to be passed through
inline const CLExtensionSet &GetSupportedCLExtensions()
{
static angle::base::NoDestructor<CLExtensionSet> sExtensions(
{ANGLE_SUPPORTED_OPENCL_EXTENSIONS});
return *sExtensions;
}
// Check if a specific OpenCL extensions is supported to be passed through
inline bool IsCLExtensionSupported(const std::string &extension)
{
const CLExtensionSet &supported = GetSupportedCLExtensions();
return supported.find(extension) != supported.cend();
}
// Filter out extensions which are not (yet) supported to be passed through
void RemoveUnsupportedCLExtensions(std::string &extensions);
void RemoveUnsupportedCLExtensions(NameVersionVector &extensions);
} // namespace rx
#endif // LIBANGLE_RENDERER_CL_CL_UTIL_H_
......@@ -39,6 +39,14 @@ cl_int CLDeviceVk::getInfoString(cl::DeviceInfo name, size_t size, char *value)
return CL_INVALID_VALUE;
}
cl_int CLDeviceVk::createSubDevices(const cl_device_partition_property *properties,
cl_uint numDevices,
InitList &deviceInitList,
cl_uint *numDevicesRet)
{
return CL_INVALID_VALUE;
}
CLDeviceImpl::Info CLDeviceVk::GetInfo()
{
CLDeviceImpl::Info info;
......
......@@ -25,6 +25,11 @@ class CLDeviceVk : public CLDeviceImpl
cl_int getInfoStringLength(cl::DeviceInfo name, size_t *value) const override;
cl_int getInfoString(cl::DeviceInfo name, size_t size, char *value) const override;
cl_int createSubDevices(const cl_device_partition_property *properties,
cl_uint numDevices,
InitList &deviceInitList,
cl_uint *numDevicesRet) override;
static Info GetInfo();
};
......
......@@ -715,23 +715,33 @@ cl_int ValidateEnqueueCopyBufferRect(const CommandQueue *command_queuePacked,
}
// CL 1.2
cl_int ValidateCreateSubDevices(const Device *in_devicePacked,
cl_int ValidateCreateSubDevices(const Device *in_device,
const cl_device_partition_property *properties,
cl_uint num_devices,
Device *const *out_devicesPacked,
Device *const *out_devices,
const cl_uint *num_devices_ret)
{
if (!Device::IsValid(in_device))
{
return CL_INVALID_DEVICE;
}
if (properties == nullptr || (*properties != CL_DEVICE_PARTITION_EQUALLY &&
*properties != CL_DEVICE_PARTITION_BY_COUNTS &&
*properties != CL_DEVICE_PARTITION_BY_AFFINITY_DOMAIN))
{
return CL_INVALID_VALUE;
}
return CL_SUCCESS;
}
cl_int ValidateRetainDevice(const Device *devicePacked)
cl_int ValidateRetainDevice(const Device *device)
{
return CL_SUCCESS;
return Device::IsValid(device) ? CL_SUCCESS : CL_INVALID_DEVICE;
}
cl_int ValidateReleaseDevice(const Device *devicePacked)
cl_int ValidateReleaseDevice(const Device *device)
{
return CL_SUCCESS;
return Device::IsValid(device) ? CL_SUCCESS : CL_INVALID_DEVICE;
}
bool ValidateCreateImage(const Context *contextPacked,
......
......@@ -132,20 +132,19 @@ cl_int CreateSubDevices(Device *in_device,
Device **out_devices,
cl_uint *num_devices_ret)
{
WARN_NOT_SUPPORTED(CreateSubDevices);
return 0;
return in_device->createSubDevices(properties, num_devices, out_devices, num_devices_ret);
}
cl_int RetainDevice(Device *device)
{
WARN_NOT_SUPPORTED(RetainDevice);
return 0;
device->retain();
return CL_SUCCESS;
}
cl_int ReleaseDevice(Device *device)
{
WARN_NOT_SUPPORTED(ReleaseDevice);
return 0;
device->release();
return CL_SUCCESS;
}
cl_int SetDefaultDeviceCommandQueue(Context *context, Device *device, CommandQueue *command_queue)
......
......@@ -9,11 +9,13 @@
#ifndef LIBGLESV2_ENTRY_POINTS_CL_UTILS_H_
#define LIBGLESV2_ENTRY_POINTS_CL_UTILS_H_
#include "libANGLE/Debug.h"
#include <cinttypes>
#include <cstdio>
#include <type_traits>
#if defined(ANGLE_TRACE_ENABLED)
#if defined(ANGLE_ENABLE_DEBUG_TRACE)
# define CL_EVENT(entryPoint, ...) \
std::printf("CL " #entryPoint ": " __VA_ARGS__); \
std::printf("\n")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment