mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 19:32:25 +08:00
feature: add SUPPORTED_DEVICES query to ocloc
New query option ocloc query SUPPORTED_DEVICE allows to generate a YAML file containing information about supported devices for: - the current version of ocloc on Windows - the current and previous versions of ocloc on Linux Each version of ocloc build needs to set NEO_OCLOC_CURRENT_LIB_NAME NEO_OCLOC_FORMER_LIB_NAME cmake defines for the ocloc to be able to find a previous lib and query its supported devices. Example of correct format: NEO_OCLOC_FORMER_LIB_NAME=libocloc-1.0.so NEO_OCLOC_CURRENT_LIB_NAME=libocloc-2.0.so Related-To: NEO-9630 Signed-off-by: Fabian Zwoliński <fabian.zwolinski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
d469d551fb
commit
359f4d5b56
@@ -21,6 +21,10 @@
|
||||
|
||||
class OclocArgHelper;
|
||||
|
||||
namespace Ocloc {
|
||||
enum class SupportedDevicesMode;
|
||||
};
|
||||
|
||||
namespace NEO {
|
||||
|
||||
class CompilerCache;
|
||||
@@ -47,6 +51,7 @@ class OfflineCompiler {
|
||||
static std::vector<NameVersionPair> getOpenCLCFeatures(ConstStringRef product, OclocArgHelper *helper);
|
||||
static int query(size_t numArgs, const std::vector<std::string> &allArgs, OclocArgHelper *helper);
|
||||
static int queryAcronymIds(size_t numArgs, const std::vector<std::string> &allArgs, OclocArgHelper *helper);
|
||||
static int querySupportedDevices(Ocloc::SupportedDevicesMode mode, OclocArgHelper *helper);
|
||||
|
||||
static OfflineCompiler *create(size_t numArgs, const std::vector<std::string> &allArgs, bool dumpFiles, int &retVal, OclocArgHelper *helper);
|
||||
|
||||
@@ -74,6 +79,23 @@ Supported query options:
|
||||
CL_DEVICE_PROFILE ; OpenCL device profile supported by device_filter
|
||||
CL_DEVICE_OPENCL_C_ALL_VERSIONS ; OpenCL C versions supported by device_filter
|
||||
CL_DEVICE_OPENCL_C_FEATURES ; OpenCL C features supported by device_filter
|
||||
SUPPORTED_DEVICES ; Generates a YAML file with information about supported devices
|
||||
|
||||
SUPPORTED_DEVICES option:
|
||||
Linux:
|
||||
Description: Generates a YAML file containing information about supported devices
|
||||
for the current and previous versions of ocloc.
|
||||
Usage: ocloc query SUPPORTED_DEVICES [<mode>]
|
||||
Supported Modes:
|
||||
-merge - Combines supported devices from all ocloc versions into a single list (default if not specified)
|
||||
-concat - Lists supported devices for each ocloc version separately
|
||||
Output file: <ocloc_version>_supported_devices_<mode>.yaml
|
||||
|
||||
Windows:
|
||||
Description: Generates a YAML file containing information about supported devices
|
||||
for the current version of ocloc.
|
||||
Usage: ocloc query SUPPORTED_DEVICES
|
||||
Output file: <ocloc_version>_supported_devices.yaml
|
||||
|
||||
Examples:
|
||||
ocloc query OCL_DRIVER_VERSION
|
||||
|
||||
Reference in New Issue
Block a user