From 01047eb461074207efc36ed9a45b1e1ea788519b Mon Sep 17 00:00:00 2001 From: Zbigniew Zdanowicz Date: Tue, 28 Nov 2023 12:00:47 +0000 Subject: [PATCH] refactor: make command list append launch kernel method virtual Signed-off-by: Zbigniew Zdanowicz --- level_zero/core/source/cmdlist/cmdlist_hw.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/level_zero/core/source/cmdlist/cmdlist_hw.h b/level_zero/core/source/cmdlist/cmdlist_hw.h index 4bc1332512..7b2d6e4ccf 100644 --- a/level_zero/core/source/cmdlist/cmdlist_hw.h +++ b/level_zero/core/source/cmdlist/cmdlist_hw.h @@ -250,10 +250,10 @@ struct CommandListCoreFamily : public CommandListImp { const Vec3 &srcSize, const Vec3 &dstSize, Event *signalEvent); - MOCKABLE_VIRTUAL ze_result_t appendLaunchKernelWithParams(Kernel *kernel, - const ze_group_count_t &threadGroupDimensions, - Event *event, - const CmdListKernelLaunchParams &launchParams); + virtual ze_result_t appendLaunchKernelWithParams(Kernel *kernel, + const ze_group_count_t &threadGroupDimensions, + Event *event, + const CmdListKernelLaunchParams &launchParams); MOCKABLE_VIRTUAL ze_result_t appendLaunchKernelSplit(Kernel *kernel, const ze_group_count_t &threadGroupDimensions, Event *event,