Skip to content

Commit a3642db

Browse files
committed
[SYCL] Fix queue graph function definitions
1 parent 757092d commit a3642db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sycl/source/queue.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,19 +215,19 @@ bool queue::device_has(aspect Aspect) const {
215215
return impl->getDeviceImplPtr()->has(Aspect);
216216
}
217217

218-
bool begin_recording(
218+
bool queue::begin_recording(
219219
ext::oneapi::experimental::command_graph<
220220
ext::oneapi::experimental::graph_state::modifiable> &graph) {
221221
// Empty Implementation
222222
return true;
223223
}
224224

225-
bool end_recording() {
225+
bool queue::end_recording() {
226226
// Empty Implementation
227227
return true;
228228
}
229229

230-
event submit(ext::oneapi::experimental::command_graph<
230+
event queue::submit(ext::oneapi::experimental::command_graph<
231231
ext::oneapi::experimental::graph_state::executable>
232232
graph) {
233233
// Empty implementation

0 commit comments

Comments
 (0)