@@ -89,7 +89,7 @@ class queue {
89
89
queue (const context &SyclContext, const device_selector &DeviceSelector,
90
90
const property_list &PropList = {});
91
91
92
- // / Constructs a SYCL queue instance with an asunc_handler that is associated
92
+ // / Constructs a SYCL queue instance with an async_handler that is associated
93
93
// / with the context provided, using the device returned by the device
94
94
// / selector.
95
95
// /
@@ -242,7 +242,7 @@ class queue {
242
242
243
243
// / single_task version with a kernel represented as a lambda.
244
244
// /
245
- // / @param DepEvent is an event that specifies the kernel dependences
245
+ // / @param DepEvent is an event that specifies the kernel dependencies
246
246
// / @param KernelFunc is the Kernel functor or lambda
247
247
template <typename KernelName = detail::auto_name, typename KernelType>
248
248
event single_task (event DepEvent, KernelType KernelFunc) {
@@ -254,7 +254,8 @@ class queue {
254
254
255
255
// / single_task version with a kernel represented as a lambda.
256
256
// /
257
- // / @param DepEvents is a vector of events that specify the kernel dependences
257
+ // / @param DepEvents is a vector of events that specifies the kernel
258
+ // / dependencies
258
259
// / @param KernelFunc is the Kernel functor or lambda
259
260
template <typename KernelName = detail::auto_name, typename KernelType>
260
261
event single_task (const vector_class<event> &DepEvents,
@@ -283,7 +284,7 @@ class queue {
283
284
// / specifies global size only.
284
285
// /
285
286
// / @param NumWorkItems is a range that specifies the work space of the kernel
286
- // / @param DepEvent is an event that specifies the kernel dependences
287
+ // / @param DepEvent is an event that specifies the kernel dependencies
287
288
// / @param KernelFunc is the Kernel functor or lambda
288
289
template <typename KernelName = detail::auto_name, typename KernelType,
289
290
int Dims>
@@ -301,7 +302,7 @@ class queue {
301
302
// /
302
303
// / @param NumWorkItems is a range that specifies the work space of the kernel
303
304
// / @param DepEvents is a vector of events that specifies the kernel
304
- // / dependences
305
+ // / dependencies
305
306
// / @param KernelFunc is the Kernel functor or lambda
306
307
template <typename KernelName = detail::auto_name, typename KernelType,
307
308
int Dims>
@@ -336,7 +337,7 @@ class queue {
336
337
// /
337
338
// / @param NumWorkItems is a range that specifies the work space of the kernel
338
339
// / @param WorkItemOffset specifies the offset for each work item id
339
- // / @param DepEvent is an event that specifies the kernel dependences
340
+ // / @param DepEvent is an event that specifies the kernel dependencies
340
341
// / @param KernelFunc is the Kernel functor or lambda
341
342
template <typename KernelName = detail::auto_name, typename KernelType,
342
343
int Dims>
@@ -355,7 +356,7 @@ class queue {
355
356
// / @param NumWorkItems is a range that specifies the work space of the kernel
356
357
// / @param WorkItemOffset specifies the offset for each work item id
357
358
// / @param DepEvents is a vector of events that specifies the kernel
358
- // / dependences
359
+ // / dependencies
359
360
// / @param KernelFunc is the Kernel functor or lambda
360
361
template <typename KernelName = detail::auto_name, typename KernelType,
361
362
int Dims>
@@ -388,7 +389,7 @@ class queue {
388
389
// /
389
390
// / @param ExecutionRange is a range that specifies the work space of the
390
391
// / kernel
391
- // / @param DepEvent is an event that specifies the kernel dependences
392
+ // / @param DepEvent is an event that specifies the kernel dependencies
392
393
// / @param KernelFunc is the Kernel functor or lambda
393
394
template <typename KernelName = detail::auto_name, typename KernelType,
394
395
int Dims>
@@ -407,7 +408,7 @@ class queue {
407
408
// / @param ExecutionRange is a range that specifies the work space of the
408
409
// / kernel
409
410
// / @param DepEvents is a vector of events that specifies the kernel
410
- // / dependences
411
+ // / dependencies
411
412
// / @param KernelFunc is the Kernel functor or lambda
412
413
template <typename KernelName = detail::auto_name, typename KernelType,
413
414
int Dims>
0 commit comments