Skip to content

Commit dfdbf2f

Browse files
pbalcerCompute-Runtime-Automation
authored andcommitted
fix SinKernelGraphUR compilation
The function to enqueue command buffers in UR has changed name recently. Signed-off-by: Piotr Balcer <[email protected]>
1 parent 67e524e commit dfdbf2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/benchmarks/graph_api_benchmark/implementations/ur/sin_kernel_impl_ur.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ TestResult SinKernelGraphUR::runGraph(float *input_h) {
166166
nullptr, nullptr));
167167
// run graph
168168
EXPECT_UR_RESULT_SUCCESS(
169-
urCommandBufferEnqueueExp(cmdBuffer, queue, 0, nullptr, nullptr));
169+
urEnqueueCommandBufferExp(queue, cmdBuffer, 0, nullptr, nullptr));
170170

171171
return TestResult::Success;
172172
}

0 commit comments

Comments
 (0)