@@ -125,7 +125,6 @@ void createImmediateCmdlistWithMode(ze_context_handle_t context,
125125 ze_command_queue_flags_t flags,
126126 ze_command_queue_priority_t priority,
127127 uint32_t ordinal,
128- bool copyOffload,
129128 ze_command_list_handle_t &cmdList);
130129
131130inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
@@ -134,83 +133,75 @@ inline void createImmediateCmdlistWithMode(ze_context_handle_t context,
134133 ze_command_queue_priority_t priority,
135134 uint32_t ordinal,
136135 bool syncMode,
137- bool copyOffload,
138136 ze_command_list_handle_t &cmdList) {
139137 ze_command_queue_mode_t mode = ZE_COMMAND_QUEUE_MODE_DEFAULT;
140138 selectQueueMode (mode, syncMode);
141- createImmediateCmdlistWithMode (context, device, mode, flags, priority, ordinal, copyOffload, cmdList);
139+ createImmediateCmdlistWithMode (context, device, mode, flags, priority, ordinal, cmdList);
142140}
143141
144142inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
145143 ze_device_handle_t device,
146144 ze_command_queue_priority_t priority,
147145 uint32_t ordinal,
148146 bool syncMode,
149- bool copyOffload,
150147 ze_command_list_handle_t &cmdList) {
151148 constexpr ze_command_queue_flags_t constFlags = 0 ;
152- createImmediateCmdlistWithMode (context, device, constFlags, priority, ordinal, syncMode, copyOffload, cmdList);
149+ createImmediateCmdlistWithMode (context, device, constFlags, priority, ordinal, syncMode, cmdList);
153150}
154151
155152inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
156153 ze_device_handle_t device,
157154 ze_command_queue_flags_t flags,
158155 uint32_t ordinal,
159156 bool syncMode,
160- bool copyOffload,
161157 ze_command_list_handle_t &cmdList) {
162- createImmediateCmdlistWithMode (context, device, flags, ZE_COMMAND_QUEUE_PRIORITY_NORMAL, ordinal, syncMode, copyOffload, cmdList);
158+ createImmediateCmdlistWithMode (context, device, flags, ZE_COMMAND_QUEUE_PRIORITY_NORMAL, ordinal, syncMode, cmdList);
163159}
164160
165161inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
166162 ze_device_handle_t device,
167163 uint32_t ordinal,
168164 bool syncMode,
169- bool copyOffload,
170165 ze_command_list_handle_t &cmdList) {
171166 constexpr ze_command_queue_flags_t constFlags = 0 ;
172- createImmediateCmdlistWithMode (context, device, constFlags, ZE_COMMAND_QUEUE_PRIORITY_NORMAL, ordinal, syncMode, copyOffload, cmdList);
167+ createImmediateCmdlistWithMode (context, device, constFlags, ZE_COMMAND_QUEUE_PRIORITY_NORMAL, ordinal, syncMode, cmdList);
173168}
174169
175170inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
176171 ze_device_handle_t device,
177172 ze_command_queue_priority_t priority,
178173 bool syncMode,
179174 bool copyEngine,
180- bool copyOffload,
181175 ze_command_list_handle_t &cmdList) {
182176 uint32_t ordinal = copyEngine ? getCopyOnlyCommandQueueOrdinal (device) : getCommandQueueOrdinal (device, false );
183- createImmediateCmdlistWithMode (context, device, priority, ordinal, syncMode, copyOffload, cmdList);
177+ createImmediateCmdlistWithMode (context, device, priority, ordinal, syncMode, cmdList);
184178}
185179
186180inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
187181 ze_device_handle_t device,
188182 ze_command_queue_flags_t flags,
189183 bool syncMode,
190184 bool copyEngine,
191- bool copyOffload,
192185 ze_command_list_handle_t &cmdList) {
193186 uint32_t ordinal = copyEngine ? getCopyOnlyCommandQueueOrdinal (device) : getCommandQueueOrdinal (device, false );
194- createImmediateCmdlistWithMode (context, device, flags, ordinal, syncMode, copyOffload, cmdList);
187+ createImmediateCmdlistWithMode (context, device, flags, ordinal, syncMode, cmdList);
195188}
196189
197190inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
198191 ze_device_handle_t device,
199192 bool syncMode,
200193 bool copyEngine,
201- bool copyOffload,
202194 ze_command_list_handle_t &cmdList) {
203195 constexpr ze_command_queue_flags_t constFlags = 0 ;
204- createImmediateCmdlistWithMode (context, device, constFlags, syncMode, copyEngine, copyOffload, cmdList);
196+ createImmediateCmdlistWithMode (context, device, constFlags, syncMode, copyEngine, cmdList);
205197}
206198
207199inline void createImmediateCmdlistWithMode (ze_context_handle_t context,
208200 ze_device_handle_t device,
209201 ze_command_list_handle_t &cmdList) {
210202 constexpr bool syncMode = false ;
211203 constexpr bool copyEngine = false ;
212- constexpr bool copyOffload = false ;
213- createImmediateCmdlistWithMode (context, device, syncMode, copyEngine, copyOffload, cmdList);
204+ createImmediateCmdlistWithMode (context, device, syncMode, copyEngine, cmdList);
214205}
215206
216207void createEventPoolAndEvents (ze_context_handle_t &context,
0 commit comments