@@ -281,7 +281,7 @@ malloc_device_annotated(
281
281
size_t numBytes,
282
282
const device& syclDevice,
283
283
const context& syclContext,
284
- const propertyListA &propList = properties {})
284
+ const propertyListA &propList = propertyListA {})
285
285
----
286
286
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is allocated on `syclDevice`.
287
287
The allocation size is specified in bytes.
@@ -316,7 +316,7 @@ malloc_device_annotated(
316
316
size_t count,
317
317
const device& syclDevice,
318
318
const context& syclContext,
319
- const propertyListA &propList = properties {})
319
+ const propertyListA &propList = propertyListA {})
320
320
----
321
321
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is allocated on `syclDevice`.
322
322
The allocation size is specified in number of elements of type
@@ -349,7 +349,7 @@ annotated_ptr<void, propertyListB>
349
349
malloc_device_annotated(
350
350
size_t numBytes,
351
351
const queue& syclQueue,
352
- const propertyListA &propList = properties {})
352
+ const propertyListA &propList = propertyListA {})
353
353
----
354
354
a@ Simplified form where `syclQueue` provides the `device`
355
355
and `context`.
@@ -364,7 +364,7 @@ annotated_ptr<T, propertyListB>
364
364
malloc_device_annotated(
365
365
size_t count,
366
366
const queue& syclQueue,
367
- const propertyListA &propList = properties {})
367
+ const propertyListA &propList = propertyListA {})
368
368
----
369
369
a@ Simplified form where `syclQueue` provides the `device`
370
370
and `context`.
@@ -379,7 +379,7 @@ aligned_alloc_device_annotated(
379
379
size_t numBytes,
380
380
const device& syclDevice,
381
381
const context& syclContext,
382
- const propertyListA &propList = properties {})
382
+ const propertyListA &propList = propertyListA {})
383
383
----
384
384
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is allocated on
385
385
`syclDevice`.
@@ -417,7 +417,7 @@ aligned_alloc_device_annotated(
417
417
size_t count,
418
418
const device& syclDevice,
419
419
const context& syclContext,
420
- const propertyListA &propList = properties {})
420
+ const propertyListA &propList = propertyListA {})
421
421
----
422
422
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is allocated on
423
423
`syclDevice`.
@@ -452,7 +452,7 @@ aligned_alloc_device_annotated(
452
452
size_t alignment,
453
453
size_t numBytes,
454
454
const queue& syclQueue,
455
- const propertyListA &propList = properties {})
455
+ const propertyListA &propList = propertyListA {})
456
456
----
457
457
a@ Simplified form where `syclQueue` provides the `device`
458
458
and `context`.
@@ -468,7 +468,7 @@ aligned_alloc_device_annotated(
468
468
size_t alignment,
469
469
size_t count,
470
470
const queue& syclQueue,
471
- const propertyListA &propList = properties {})
471
+ const propertyListA &propList = propertyListA {})
472
472
----
473
473
a@ Simplified form where `syclQueue` provides the `device`
474
474
and `context`.
@@ -497,7 +497,7 @@ annotated_ptr<void, propertyListB>
497
497
malloc_host_annotated(
498
498
size_t numBytes,
499
499
const context& syclContext,
500
- const propertyListA &propList = properties {})
500
+ const propertyListA &propList = propertyListA {})
501
501
----
502
502
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory. This allocation is specified in bytes.
503
503
@@ -526,7 +526,7 @@ annotated_ptr<T, propertyListB>
526
526
malloc_host_annotated(
527
527
size_t count,
528
528
const context& syclContext,
529
- const propertyListA &propList = properties {})
529
+ const propertyListA &propList = propertyListA {})
530
530
----
531
531
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory. This allocation is specified in number of elements of type `T`.
532
532
@@ -553,7 +553,7 @@ annotated_ptr<void, propertyListB>
553
553
malloc_host_annotated(
554
554
size_t numBytes,
555
555
const queue& syclQueue,
556
- const propertyListA &propList = properties {})
556
+ const propertyListA &propList = propertyListA {})
557
557
----
558
558
a@ Simplified form where `syclQueue` provides the `context`.
559
559
@@ -567,7 +567,7 @@ annotated_ptr<T, propertyListB>
567
567
malloc_host_annotated(
568
568
size_t count,
569
569
const queue& syclQueue,
570
- const propertyListA &propList = properties {})
570
+ const propertyListA &propList = propertyListA {})
571
571
----
572
572
a@ Simplified form where `syclQueue` provides the `context`.
573
573
@@ -580,7 +580,7 @@ aligned_alloc_host_annotated(
580
580
size_t alignment,
581
581
size_t numBytes,
582
582
const context& syclContext,
583
- const propertyListA &propList = properties {})
583
+ const propertyListA &propList = propertyListA {})
584
584
----
585
585
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory.
586
586
This allocation is specified in bytes and aligned according to `alignment`.
@@ -611,7 +611,7 @@ aligned_alloc_host_annotated(
611
611
size_t alignment,
612
612
size_t count,
613
613
const context& syclContext,
614
- const propertyListA &propList = properties {})
614
+ const propertyListA &propList = propertyListA {})
615
615
----
616
616
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory.
617
617
This allocation is specified in elements of type `T` and aligned according to `alignment`.
@@ -640,7 +640,7 @@ aligned_alloc_host_annotated(
640
640
size_t alignment,
641
641
size_t numBytes,
642
642
const queue& syclQueue,
643
- const propertyListA &propList = properties {})
643
+ const propertyListA &propList = propertyListA {})
644
644
----
645
645
a@ Simplified form where `syclQueue` provides the `context`.
646
646
@@ -655,7 +655,7 @@ aligned_alloc_host_annotated(
655
655
size_t alignment,
656
656
size_t count,
657
657
const queue& syclQueue,
658
- const propertyListA &propList = properties {})
658
+ const propertyListA &propList = propertyListA {})
659
659
----
660
660
a@ Simplified form where `syclQueue` provides the `context`.
661
661
@@ -683,7 +683,7 @@ malloc_shared_annotated(
683
683
size_t numBytes,
684
684
const device& syclDevice,
685
685
const context& syclContext,
686
- const propertyListA &propList = properties {})
686
+ const propertyListA &propList = propertyListA {})
687
687
----
688
688
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is associated with `syclDevice`.
689
689
This allocation is specified in bytes.
@@ -718,7 +718,7 @@ malloc_shared_annotated(
718
718
size_t count,
719
719
const device& syclDevice,
720
720
const context& syclContext,
721
- const propertyListA &propList = properties {})
721
+ const propertyListA &propList = propertyListA {})
722
722
----
723
723
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is associated with `syclDevice`.
724
724
This allocation is specified in number of elements of
@@ -751,7 +751,7 @@ annotated_ptr<void, propertyListB>
751
751
malloc_shared_annotated(
752
752
size_t numBytes,
753
753
const queue& syclQueue,
754
- const propertyListA &propList = properties {})
754
+ const propertyListA &propList = propertyListA {})
755
755
----
756
756
a@ Simplified form where `syclQueue` provides the `device` and
757
757
`context`.
@@ -766,7 +766,7 @@ annotated_ptr<T, propertyListB>
766
766
malloc_shared_annotated(
767
767
size_t count,
768
768
const queue& syclQueue,
769
- const propertyListA &propList = properties {})
769
+ const propertyListA &propList = propertyListA {})
770
770
----
771
771
a@ Simplified form where `syclQueue` provides the `device` and
772
772
`context`.
@@ -781,7 +781,7 @@ aligned_alloc_shared_annotated(
781
781
size_t numBytes,
782
782
const device& syclDevice,
783
783
const context& syclContext,
784
- const propertyListA &propList = properties {})
784
+ const propertyListA &propList = propertyListA {})
785
785
----
786
786
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is associated with `syclDevice`.
787
787
This allocation is specified in bytes and aligned according to `alignment`.
@@ -817,7 +817,7 @@ aligned_alloc_shared_annotated(
817
817
size_t count,
818
818
const device& syclDevice,
819
819
const context& syclContext,
820
- const propertyListA &propList = properties {})
820
+ const propertyListA &propList = propertyListA {})
821
821
----
822
822
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory, which is associated with `syclDevice`.
823
823
This allocation is specified in number of elements of type `T` and aligned according to `alignment`.
@@ -850,7 +850,7 @@ aligned_alloc_shared_annotated(
850
850
size_t alignment,
851
851
size_t numBytes,
852
852
const queue& syclQueue,
853
- const propertyListA &propList = properties {})
853
+ const propertyListA &propList = propertyListA {})
854
854
----
855
855
a@ Simplified form where `syclQueue` provides the `device` and
856
856
`context`.
@@ -866,7 +866,7 @@ aligned_alloc_shared_annotated(
866
866
size_t alignment,
867
867
size_t count,
868
868
const queue& syclQueue,
869
- const propertyListA &propList = properties {})
869
+ const propertyListA &propList = propertyListA {})
870
870
----
871
871
a@ Simplified form where `syclQueue` provides the `device` and
872
872
`context`.
@@ -907,7 +907,7 @@ malloc_annotated(
907
907
const device& syclDevice,
908
908
const context& syclContext,
909
909
sycl::usm::alloc kind,
910
- const propertyListA &propList = properties {})
910
+ const propertyListA &propList = propertyListA {})
911
911
----
912
912
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory of type `kind`.
913
913
This allocation size is specified in bytes.
@@ -940,7 +940,7 @@ malloc_annotated(
940
940
const device& syclDevice,
941
941
const context& syclContext,
942
942
sycl::usm::alloc kind,
943
- const propertyListA &propList = properties {})
943
+ const propertyListA &propList = propertyListA {})
944
944
----
945
945
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory of type `kind`.
946
946
This allocation is specified in number of elements of type `T`.
@@ -971,7 +971,7 @@ malloc_annotated(
971
971
size_t numBytes,
972
972
const queue& syclQueue,
973
973
sycl::usm::alloc kind,
974
- const propertyListA &propList = properties {})
974
+ const propertyListA &propList = propertyListA {})
975
975
----
976
976
a@ Simplified form where `syclQueue` provides the `context`
977
977
and any necessary `device`.
@@ -987,7 +987,7 @@ malloc_annotated(
987
987
size_t count,
988
988
const queue& syclQueue,
989
989
sycl::usm::alloc kind,
990
- const propertyListA &propList = properties {})
990
+ const propertyListA &propList = propertyListA {})
991
991
----
992
992
a@ Simplified form where `syclQueue` provides the `context`
993
993
and any necessary `device`.
@@ -1003,7 +1003,7 @@ aligned_alloc_annotated(
1003
1003
const device& syclDevice,
1004
1004
const context& syclContext,
1005
1005
sycl::usm::alloc kind,
1006
- const propertyListA &propList = properties {})
1006
+ const propertyListA &propList = propertyListA {})
1007
1007
----
1008
1008
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory of type `kind`.
1009
1009
This allocation is specified in bytes and is aligned according to `alignment`.
@@ -1037,7 +1037,7 @@ aligned_alloc_annotated(
1037
1037
const device& syclDevice,
1038
1038
const context& syclContext,
1039
1039
sycl::usm::alloc kind,
1040
- const propertyListA &propList = properties {})
1040
+ const propertyListA &propList = propertyListA {})
1041
1041
----
1042
1042
a@ Returns an `annotated_ptr` containing a raw pointer to the newly allocated memory of type `kind`.
1043
1043
This allocation is specified in number of elements of type `T` and is aligned according to `alignment`.
@@ -1068,7 +1068,7 @@ aligned_alloc_annotated(
1068
1068
size_t numBytes,
1069
1069
const queue& syclQueue,
1070
1070
sycl::usm::alloc kind,
1071
- const propertyListA &propList = properties {})
1071
+ const propertyListA &propList = propertyListA {})
1072
1072
----
1073
1073
a@ Simplified form where `syclQueue` provides the `context`
1074
1074
and any necessary `device`.
@@ -1085,7 +1085,7 @@ aligned_alloc_annotated(
1085
1085
size_t count,
1086
1086
const queue& syclQueue,
1087
1087
sycl::usm::alloc kind,
1088
- const propertyListA &propList = properties {})
1088
+ const propertyListA &propList = propertyListA {})
1089
1089
----
1090
1090
a@ Simplified form where `syclQueue` provides the `context`
1091
1091
and any necessary `device`.
0 commit comments