mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 13:54:58 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/accelerators/intel_accelerator.h"
|
|
#include "runtime/context/context.h"
|
|
#include "runtime/helpers/string.h"
|
|
#include "runtime/helpers/get_info.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
cl_int IntelAccelerator::getInfo(cl_accelerator_info_intel paramName,
|
|
size_t paramValueSize,
|
|
void *paramValue,
|
|
size_t *paramValueSizeRet) const {
|
|
cl_int result = CL_SUCCESS;
|
|
size_t ret = 0;
|
|
|
|
switch (paramName) {
|
|
case CL_ACCELERATOR_DESCRIPTOR_INTEL: {
|
|
ret = getDescriptorSize();
|
|
result = ::getInfo(paramValue, paramValueSize, getDescriptor(), ret);
|
|
}
|
|
|
|
break;
|
|
|
|
case CL_ACCELERATOR_REFERENCE_COUNT_INTEL: {
|
|
auto v = getReference();
|
|
|
|
ret = sizeof(cl_uint);
|
|
result = ::getInfo(paramValue, paramValueSize, &v, ret);
|
|
}
|
|
|
|
break;
|
|
|
|
case CL_ACCELERATOR_CONTEXT_INTEL: {
|
|
ret = sizeof(cl_context);
|
|
cl_context ctx = static_cast<cl_context>(pContext);
|
|
result = ::getInfo(paramValue, paramValueSize, &ctx, ret);
|
|
}
|
|
|
|
break;
|
|
|
|
case CL_ACCELERATOR_TYPE_INTEL: {
|
|
auto v = getTypeId();
|
|
ret = sizeof(cl_accelerator_type_intel);
|
|
result = ::getInfo(paramValue, paramValueSize, &v, ret);
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
result = CL_INVALID_VALUE;
|
|
break;
|
|
}
|
|
|
|
if (paramValueSizeRet) {
|
|
*paramValueSizeRet = ret;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
} // namespace OCLRT
|