Skip to content

Commit 93e6d8c

Browse files
committed
[L0 v2] implement urKernelGetInfo
and return appropriate error from urKernelSetArgValue
1 parent b1a6209 commit 93e6d8c

File tree

7 files changed

+93
-90
lines changed

7 files changed

+93
-90
lines changed

source/adapters/level_zero/device.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ uint64_t calculateGlobalMemSize(ur_device_handle_t Device) {
186186
}
187187
}
188188
};
189-
return Device->ZeGlobalMemSize.operator->()->value;
189+
return Device->ZeGlobalMemSize.get().value;
190190
}
191191

192192
ur_result_t urDeviceGetInfo(

source/adapters/level_zero/kernel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ ur_result_t urKernelGetInfo(
726726
return ReturnValue(ur_program_handle_t{Kernel->Program});
727727
case UR_KERNEL_INFO_FUNCTION_NAME:
728728
try {
729-
std::string &KernelName = *Kernel->ZeKernelName.operator->();
729+
std::string &KernelName = Kernel->ZeKernelName.get();
730730
return ReturnValue(static_cast<const char *>(KernelName.c_str()));
731731
} catch (const std::bad_alloc &) {
732732
return UR_RESULT_ERROR_OUT_OF_HOST_MEMORY;

source/adapters/level_zero/v2/api.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,6 @@ ur_result_t urPhysicalMemRelease(ur_physical_mem_handle_t hPhysicalMem) {
177177
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
178178
}
179179

180-
ur_result_t urKernelGetInfo(ur_kernel_handle_t hKernel,
181-
ur_kernel_info_t propName, size_t propSize,
182-
void *pPropValue, size_t *pPropSizeRet) {
183-
logger::error("{} function not implemented!", __FUNCTION__);
184-
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
185-
}
186-
187180
ur_result_t
188181
urKernelSetArgSampler(ur_kernel_handle_t hKernel, uint32_t argIndex,
189182
const ur_kernel_arg_sampler_properties_t *pProperties,

source/adapters/level_zero/v2/kernel.cpp

Lines changed: 73 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,19 @@ ur_result_t ur_kernel_handle_t_::release() {
9898
void ur_kernel_handle_t_::completeInitialization() {
9999
// Cache kernel name. Should be the same for all devices
100100
assert(deviceKernels.size() > 0);
101-
auto nonEmptyKernel =
102-
std::find_if(deviceKernels.begin(), deviceKernels.end(),
103-
[](const auto &kernel) { return kernel.has_value(); });
101+
nonEmptyKernel =
102+
&std::find_if(deviceKernels.begin(), deviceKernels.end(),
103+
[](const auto &kernel) { return kernel.has_value(); })
104+
->value();
104105

105-
zeKernelName.Compute = [kernel =
106-
&nonEmptyKernel->value()](std::string &name) {
106+
zeCommonProperties.Compute = [kernel = nonEmptyKernel](
107+
common_properties_t &props) {
107108
size_t size = 0;
108109
ZE_CALL_NOCHECK(zeKernelGetName, (kernel->hKernel.get(), &size, nullptr));
109-
name.resize(size);
110+
props.name.resize(size);
110111
ZE_CALL_NOCHECK(zeKernelGetName,
111-
(kernel->hKernel.get(), &size, name.data()));
112+
(kernel->hKernel.get(), &size, props.name.data()));
113+
props.numKernelArgs = kernel->zeKernelProperties->numKernelArgs;
112114
};
113115
}
114116

@@ -142,8 +144,9 @@ ur_kernel_handle_t_::getZeHandle(ur_device_handle_t hDevice) {
142144
return deviceKernels[hDevice->Id.value()].value().hKernel.get();
143145
}
144146

145-
const std::string &ur_kernel_handle_t_::getName() const {
146-
return *zeKernelName.operator->();
147+
ur_kernel_handle_t_::common_properties_t
148+
ur_kernel_handle_t_::getCommonProperties() const {
149+
return zeCommonProperties.get();
147150
}
148151

149152
const ze_kernel_properties_t &
@@ -154,10 +157,7 @@ ur_kernel_handle_t_::getProperties(ur_device_handle_t hDevice) const {
154157

155158
assert(deviceKernels[hDevice->Id.value()].value().hKernel.get());
156159

157-
return *deviceKernels[hDevice->Id.value()]
158-
.value()
159-
.zeKernelProperties.
160-
operator->();
160+
return deviceKernels[hDevice->Id.value()].value().zeKernelProperties.get();
161161
}
162162

163163
ur_result_t ur_kernel_handle_t_::setArgValue(
@@ -178,16 +178,26 @@ ur_result_t ur_kernel_handle_t_::setArgValue(
178178
pArgValue = nullptr;
179179
}
180180

181+
if (argIndex > zeCommonProperties->numKernelArgs - 1) {
182+
return UR_RESULT_ERROR_INVALID_KERNEL_ARGUMENT_INDEX;
183+
}
184+
181185
std::scoped_lock<ur_shared_mutex> guard(Mutex);
182186

183187
for (auto &singleDeviceKernel : deviceKernels) {
184188
if (!singleDeviceKernel.has_value()) {
185189
continue;
186190
}
187191

188-
ZE2UR_CALL(zeKernelSetArgumentValue,
189-
(singleDeviceKernel.value().hKernel.get(), argIndex, argSize,
190-
pArgValue));
192+
auto zeResult = ZE_CALL_NOCHECK(zeKernelSetArgumentValue,
193+
(singleDeviceKernel.value().hKernel.get(),
194+
argIndex, argSize, pArgValue));
195+
196+
if (zeResult == ZE_RESULT_ERROR_INVALID_ARGUMENT) {
197+
return UR_RESULT_ERROR_INVALID_KERNEL_ARGUMENT_SIZE;
198+
} else if (zeResult != ZE_RESULT_SUCCESS) {
199+
return ze2urResult(zeResult);
200+
}
191201
}
192202
return UR_RESULT_SUCCESS;
193203
}
@@ -257,6 +267,17 @@ std::vector<ur_device_handle_t> ur_kernel_handle_t_::getDevices() const {
257267
return devices;
258268
}
259269

270+
std::vector<char> ur_kernel_handle_t_::getSourceAttributes() const {
271+
uint32_t size;
272+
ZE2UR_CALL_THROWS(zeKernelGetSourceAttributes,
273+
(nonEmptyKernel->hKernel.get(), &size, nullptr));
274+
std::vector<char> attributes(size);
275+
char *dataPtr = attributes.data();
276+
ZE2UR_CALL_THROWS(zeKernelGetSourceAttributes,
277+
(nonEmptyKernel->hKernel.get(), &size, &dataPtr));
278+
return attributes;
279+
}
280+
260281
namespace ur::level_zero {
261282
ur_result_t urKernelCreate(ur_program_handle_t hProgram,
262283
const char *pKernelName,
@@ -477,4 +498,40 @@ ur_result_t urKernelGetSubGroupInfo(
477498
}
478499
return UR_RESULT_SUCCESS;
479500
}
501+
502+
ur_result_t urKernelGetInfo(ur_kernel_handle_t hKernel,
503+
ur_kernel_info_t paramName, size_t propSize,
504+
void *pKernelInfo, size_t *pPropSizeRet) {
505+
506+
UrReturnHelper ReturnValue(propSize, pKernelInfo, pPropSizeRet);
507+
508+
std::shared_lock<ur_shared_mutex> Guard(hKernel->Mutex);
509+
switch (paramName) {
510+
case UR_KERNEL_INFO_CONTEXT:
511+
return ReturnValue(
512+
ur_context_handle_t{hKernel->getProgramHandle()->Context});
513+
case UR_KERNEL_INFO_PROGRAM:
514+
return ReturnValue(ur_program_handle_t{hKernel->getProgramHandle()});
515+
case UR_KERNEL_INFO_FUNCTION_NAME: {
516+
auto kernelName = hKernel->getCommonProperties().name;
517+
return ReturnValue(static_cast<const char *>(kernelName.c_str()));
518+
}
519+
case UR_KERNEL_INFO_NUM_REGS:
520+
case UR_KERNEL_INFO_NUM_ARGS:
521+
return ReturnValue(uint32_t{hKernel->getCommonProperties().numKernelArgs});
522+
case UR_KERNEL_INFO_REFERENCE_COUNT:
523+
return ReturnValue(uint32_t{hKernel->RefCount.load()});
524+
case UR_KERNEL_INFO_ATTRIBUTES: {
525+
auto attributes = hKernel->getSourceAttributes();
526+
return ReturnValue(static_cast<const char *>(attributes.data()));
527+
}
528+
default:
529+
logger::error(
530+
"Unsupported ParamName in urKernelGetInfo: ParamName={}(0x{})",
531+
paramName, logger::toHex(paramName));
532+
return UR_RESULT_ERROR_INVALID_VALUE;
533+
}
534+
535+
return UR_RESULT_SUCCESS;
536+
}
480537
} // namespace ur::level_zero

source/adapters/level_zero/v2/kernel.hpp

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ struct ur_single_device_kernel_t {
2727
struct ur_kernel_handle_t_ : _ur_object {
2828
private:
2929
public:
30+
struct common_properties_t {
31+
std::string name;
32+
uint32_t numKernelArgs;
33+
};
34+
3035
ur_kernel_handle_t_(ur_program_handle_t hProgram, const char *kernelName);
3136

3237
// From native handle
@@ -44,7 +49,7 @@ struct ur_kernel_handle_t_ : _ur_object {
4449
std::vector<ur_device_handle_t> getDevices() const;
4550

4651
// Get name of the kernel.
47-
const std::string &getName() const;
52+
common_properties_t getCommonProperties() const;
4853

4954
// Get properties of the kernel.
5055
const ze_kernel_properties_t &getProperties(ur_device_handle_t hDevice) const;
@@ -64,6 +69,8 @@ struct ur_kernel_handle_t_ : _ur_object {
6469
ur_result_t setExecInfo(ur_kernel_exec_info_t propName,
6570
const void *pPropValue);
6671

72+
std::vector<char> getSourceAttributes() const;
73+
6774
// Perform cleanup.
6875
ur_result_t release();
6976

@@ -74,8 +81,11 @@ struct ur_kernel_handle_t_ : _ur_object {
7481
// Vector of ur_single_device_kernel_t indexed by device->Id
7582
std::vector<std::optional<ur_single_device_kernel_t>> deviceKernels;
7683

77-
// Cache of the kernel name.
78-
mutable ZeCache<std::string> zeKernelName;
84+
// Cache of the common kernel properties.
85+
mutable ZeCache<common_properties_t> zeCommonProperties;
7986

8087
void completeInitialization();
88+
89+
// pointer to any non-null kernel in deviceKernels
90+
ur_single_device_kernel_t *nonEmptyKernel;
8191
};

source/ur/ur.hpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,13 @@ template <class T> struct ZeCache : private T {
179179

180180
ZeCache() : T{} {}
181181

182-
// Access to the fields of the original T data structure.
183-
T *operator->() {
182+
T &get() {
184183
std::call_once(Computed, Compute, static_cast<T &>(*this));
185-
return this;
184+
return *this;
186185
}
186+
187+
// Access to the fields of the original T data structure.
188+
T *operator->() { return &get(); }
187189
};
188190

189191
// Helper for one-liner validation

test/conformance/kernel/kernel_adapter_level_zero_v2.match

Lines changed: 0 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,4 @@
11
{{NONDETERMINISTIC}}
2-
urKernelGetInfoTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_FUNCTION_NAME
3-
urKernelGetInfoTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_ARGS
4-
urKernelGetInfoTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_REFERENCE_COUNT
5-
urKernelGetInfoTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_CONTEXT
6-
urKernelGetInfoTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_PROGRAM
7-
urKernelGetInfoTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_ATTRIBUTES
8-
urKernelGetInfoTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_REGS
9-
urKernelGetInfoTest.InvalidSizeZero/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_FUNCTION_NAME
10-
urKernelGetInfoTest.InvalidSizeZero/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_ARGS
11-
urKernelGetInfoTest.InvalidSizeZero/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_REFERENCE_COUNT
12-
urKernelGetInfoTest.InvalidSizeZero/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_CONTEXT
13-
urKernelGetInfoTest.InvalidSizeZero/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_PROGRAM
14-
urKernelGetInfoTest.InvalidSizeZero/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_ATTRIBUTES
15-
urKernelGetInfoTest.InvalidSizeZero/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_REGS
16-
urKernelGetInfoTest.InvalidSizeSmall/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_FUNCTION_NAME
17-
urKernelGetInfoTest.InvalidSizeSmall/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_ARGS
18-
urKernelGetInfoTest.InvalidSizeSmall/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_REFERENCE_COUNT
19-
urKernelGetInfoTest.InvalidSizeSmall/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_CONTEXT
20-
urKernelGetInfoTest.InvalidSizeSmall/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_PROGRAM
21-
urKernelGetInfoTest.InvalidSizeSmall/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_ATTRIBUTES
22-
urKernelGetInfoTest.InvalidSizeSmall/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_REGS
23-
urKernelGetInfoTest.InvalidNullPointerPropValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_FUNCTION_NAME
24-
urKernelGetInfoTest.InvalidNullPointerPropValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_ARGS
25-
urKernelGetInfoTest.InvalidNullPointerPropValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_REFERENCE_COUNT
26-
urKernelGetInfoTest.InvalidNullPointerPropValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_CONTEXT
27-
urKernelGetInfoTest.InvalidNullPointerPropValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_PROGRAM
28-
urKernelGetInfoTest.InvalidNullPointerPropValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_ATTRIBUTES
29-
urKernelGetInfoTest.InvalidNullPointerPropValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_KERNEL_INFO_NUM_REGS
30-
urKernelGetInfoSingleTest.KernelNameCorrect/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
31-
urKernelGetInfoSingleTest.KernelContextCorrect/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
32-
urKernelSetArgLocalTest.InvalidKernelArgumentIndex/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
33-
urKernelSetArgMemObjTest.InvalidKernelArgumentIndex/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
34-
urKernelSetArgPointerNegativeTest.InvalidKernelArgumentIndex/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
35-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_NONE_UR_SAMPLER_FILTER_MODE_NEAREST
36-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_NONE_UR_SAMPLER_FILTER_MODE_LINEAR
37-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_TO_EDGE_UR_SAMPLER_FILTER_MODE_NEAREST
38-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_TO_EDGE_UR_SAMPLER_FILTER_MODE_LINEAR
39-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_UR_SAMPLER_FILTER_MODE_NEAREST
40-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_UR_SAMPLER_FILTER_MODE_LINEAR
41-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_REPEAT_UR_SAMPLER_FILTER_MODE_NEAREST
42-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_REPEAT_UR_SAMPLER_FILTER_MODE_LINEAR
43-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_MIRRORED_REPEAT_UR_SAMPLER_FILTER_MODE_NEAREST
44-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___NORMALIZED_UR_SAMPLER_ADDRESSING_MODE_MIRRORED_REPEAT_UR_SAMPLER_FILTER_MODE_LINEAR
45-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_NONE_UR_SAMPLER_FILTER_MODE_NEAREST
46-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_NONE_UR_SAMPLER_FILTER_MODE_LINEAR
47-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_TO_EDGE_UR_SAMPLER_FILTER_MODE_NEAREST
48-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_TO_EDGE_UR_SAMPLER_FILTER_MODE_LINEAR
49-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_UR_SAMPLER_FILTER_MODE_NEAREST
50-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_CLAMP_UR_SAMPLER_FILTER_MODE_LINEAR
51-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_REPEAT_UR_SAMPLER_FILTER_MODE_NEAREST
52-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_REPEAT_UR_SAMPLER_FILTER_MODE_LINEAR
53-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_MIRRORED_REPEAT_UR_SAMPLER_FILTER_MODE_NEAREST
54-
urKernelSetArgSamplerTestWithParam.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UNNORMALIZED_UR_SAMPLER_ADDRESSING_MODE_MIRRORED_REPEAT_UR_SAMPLER_FILTER_MODE_LINEAR
55-
urKernelSetArgSamplerTest.SuccessWithProps/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
56-
urKernelSetArgSamplerTest.InvalidNullHandleKernel/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
57-
urKernelSetArgSamplerTest.InvalidNullHandleArgValue/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
58-
urKernelSetArgSamplerTest.InvalidKernelArgumentIndex/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
59-
urKernelSetArgValueTest.InvalidKernelArgumentIndex/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
60-
urKernelSetArgValueTest.InvalidKernelArgumentSize/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
612
urKernelSetExecInfoTest.SuccessIndirectAccess/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
623
urKernelSetExecInfoUSMPointersTest.SuccessHost/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
634
urKernelSetExecInfoUSMPointersTest.SuccessDevice/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_

0 commit comments

Comments
 (0)