From f395bdbdab228bf125330b8783766d9d12d923e2 Mon Sep 17 00:00:00 2001 From: Compute-Runtime-Validation Date: Fri, 8 Dec 2023 03:53:36 +0100 Subject: [PATCH] Revert "refactor: reduce CommandList class size by changing vector types" This reverts commit dcf74e8d294cf84366ba75647719f0561d8a591a. Signed-off-by: Compute-Runtime-Validation --- level_zero/core/source/cmdlist/cmdlist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_zero/core/source/cmdlist/cmdlist.h b/level_zero/core/source/cmdlist/cmdlist.h index f71388f33c..7021c717ae 100644 --- a/level_zero/core/source/cmdlist/cmdlist.h +++ b/level_zero/core/source/cmdlist/cmdlist.h @@ -81,8 +81,8 @@ struct CommandList : _ze_command_list_handle_t { void *pCommand = nullptr; CommandType type = Invalid; }; - using CommandsToPatch = std::vector; - using CmdListReturnPoints = std::vector; + using CommandsToPatch = StackVec; + using CmdListReturnPoints = StackVec; virtual ze_result_t close() = 0; virtual ze_result_t destroy() = 0;