forked from intel/llvm
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathur_libapi.cpp
9743 lines (9355 loc) · 403 KB
/
ur_libapi.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
*
* Copyright (C) 2022 Intel Corporation
*
* Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM
* Exceptions. See LICENSE.TXT
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
* @file ur_libapi.cpp
*
* @brief C++ library for ur
*
*/
#include "ur_lib.hpp"
extern "C" {
///////////////////////////////////////////////////////////////////////////////
/// @brief Create a loader config object.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == phLoaderConfig`
ur_result_t UR_APICALL urLoaderConfigCreate(
/// [out][alloc] Pointer to handle of loader config object created.
ur_loader_config_handle_t *phLoaderConfig) try {
return ur_lib::urLoaderConfigCreate(phLoaderConfig);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Get a reference to the loader config object.
///
/// @details
/// - Get a reference to the loader config handle. Increment its reference
/// count
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hLoaderConfig`
ur_result_t UR_APICALL urLoaderConfigRetain(
/// [in][retain] loader config handle to retain
ur_loader_config_handle_t hLoaderConfig) try {
return ur_lib::urLoaderConfigRetain(hLoaderConfig);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Release config handle.
///
/// @details
/// - Decrement reference count and destroy the config handle if reference
/// count becomes zero.
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hLoaderConfig`
ur_result_t UR_APICALL urLoaderConfigRelease(
/// [in][release] config handle to release
ur_loader_config_handle_t hLoaderConfig) try {
return ur_lib::urLoaderConfigRelease(hLoaderConfig);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves various information about the loader.
///
/// @details
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hLoaderConfig`
/// - ::UR_RESULT_ERROR_INVALID_ENUMERATION
/// + `::UR_LOADER_CONFIG_INFO_REFERENCE_COUNT < propName`
/// - ::UR_RESULT_ERROR_UNSUPPORTED_ENUMERATION
/// + If `propName` is not supported by the loader.
/// - ::UR_RESULT_ERROR_INVALID_SIZE
/// + `propSize == 0 && pPropValue != NULL`
/// + If `propSize` is less than the real number of bytes needed to
/// return the info.
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `propSize != 0 && pPropValue == NULL`
/// + `pPropValue == NULL && pPropSizeRet == NULL`
/// - ::UR_RESULT_ERROR_INVALID_DEVICE
/// - ::UR_RESULT_ERROR_OUT_OF_RESOURCES
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
ur_result_t UR_APICALL urLoaderConfigGetInfo(
/// [in] handle of the loader config object
ur_loader_config_handle_t hLoaderConfig,
/// [in] type of the info to retrieve
ur_loader_config_info_t propName,
/// [in] the number of bytes pointed to by pPropValue.
size_t propSize,
/// [out][optional][typename(propName, propSize)] array of bytes holding
/// the info.
/// If propSize is not equal to or greater than the real number of bytes
/// needed to return the info
/// then the ::UR_RESULT_ERROR_INVALID_SIZE error is returned and
/// pPropValue is not used.
void *pPropValue,
/// [out][optional] pointer to the actual size in bytes of the queried
/// propName.
size_t *pPropSizeRet) try {
return ur_lib::urLoaderConfigGetInfo(hLoaderConfig, propName, propSize,
pPropValue, pPropSizeRet);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Enable a layer for the specified loader config.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hLoaderConfig`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == pLayerName`
/// - ::UR_RESULT_ERROR_LAYER_NOT_PRESENT
/// + If layer specified with `pLayerName` can't be found by the loader.
ur_result_t UR_APICALL urLoaderConfigEnableLayer(
/// [in] Handle to config object the layer will be enabled for.
ur_loader_config_handle_t hLoaderConfig,
/// [in] Null terminated string containing the name of the layer to
/// enable. Empty if none are enabled.
const char *pLayerName) try {
return ur_lib::urLoaderConfigEnableLayer(hLoaderConfig, pLayerName);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Set a function callback for use by the loader to retrieve code
/// location information.
///
/// @details
/// - The code location callback is optional and provides additional
/// information to the tracing layer about the entry point of the current
/// execution flow.
/// - This functionality can be used to match traced unified runtime
/// function calls with higher-level user calls.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hLoaderConfig`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == pfnCodeloc`
ur_result_t UR_APICALL urLoaderConfigSetCodeLocationCallback(
/// [in] Handle to config object the layer will be enabled for.
ur_loader_config_handle_t hLoaderConfig,
/// [in] Function pointer to code location callback.
ur_code_location_callback_t pfnCodeloc,
/// [in][out][optional] pointer to data to be passed to callback.
void *pUserData) try {
return ur_lib::urLoaderConfigSetCodeLocationCallback(hLoaderConfig,
pfnCodeloc, pUserData);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief The only adapter reported with mock enabled will be the mock adapter.
///
/// @details
/// - The mock adapter will default to returning ::UR_RESULT_SUCCESS for all
/// entry points. It will also create and correctly reference count dummy
/// handles where appropriate. Its behaviour can be modified by linking
/// the mock library and using the object accessed via
/// mock::getCallbacks().
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hLoaderConfig`
ur_result_t UR_APICALL urLoaderConfigSetMockingEnabled(
/// [in] Handle to config object mocking will be enabled for.
ur_loader_config_handle_t hLoaderConfig,
/// [in] Handle to config object the layer will be enabled for.
ur_bool_t enable) try {
return ur_lib::urLoaderConfigSetMockingEnabled(hLoaderConfig, enable);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Initialize the 'oneAPI' loader
///
/// @details
/// - The application must call this function before calling any other
/// function.
/// - If this function is not called then all other functions will return
/// ::UR_RESULT_ERROR_UNINITIALIZED.
/// - Only one instance of the loader will be initialized per process.
/// - The application may call this function multiple times with different
/// flags or environment variables enabled.
/// - The application must call this function after forking new processes.
/// Each forked process must call this function.
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function must be thread-safe for scenarios
/// where multiple libraries may initialize the loader simultaneously.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_ENUMERATION
/// + `::UR_DEVICE_INIT_FLAGS_MASK & device_flags`
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
ur_result_t UR_APICALL urLoaderInit(
/// [in] device initialization flags.
/// must be 0 (default) or a combination of ::ur_device_init_flag_t.
ur_device_init_flags_t device_flags,
/// [in][optional] Handle of loader config handle.
ur_loader_config_handle_t hLoaderConfig) try {
return ur_lib::urLoaderInit(device_flags, hLoaderConfig);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Tear down the 'oneAPI' loader and release all its resources
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
ur_result_t UR_APICALL urLoaderTearDown(void) try {
return ur_lib::urLoaderTearDown();
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves all available adapters
///
/// @details
/// - Adapter implementations must return exactly one adapter handle from
/// this entry point.
/// - The loader may return more than one adapter handle when there are
/// multiple available.
/// - Each returned adapter has its reference count incremented and should
/// be released with a subsequent call to ::urAdapterRelease.
/// - Adapters may perform adapter-specific state initialization when the
/// first reference to them is taken.
/// - An application may call this entry point multiple times to acquire
/// multiple references to the adapter handle(s).
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_SIZE
/// + `NumEntries == 0 && phAdapters != NULL`
ur_result_t UR_APICALL urAdapterGet(
/// [in] the number of adapters to be added to phAdapters.
/// If phAdapters is not NULL, then NumEntries should be greater than
/// zero, otherwise ::UR_RESULT_ERROR_INVALID_SIZE,
/// will be returned.
uint32_t NumEntries,
/// [out][optional][range(0, NumEntries)][alloc] array of handle of
/// adapters. If NumEntries is less than the number of adapters available,
/// then
/// ::urAdapterGet shall only retrieve that number of adapters.
ur_adapter_handle_t *phAdapters,
/// [out][optional] returns the total number of adapters available.
uint32_t *pNumAdapters) try {
auto pfnAdapterGet = ur_lib::getContext()->urDdiTable.Global.pfnAdapterGet;
if (nullptr == pfnAdapterGet)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnAdapterGet(NumEntries, phAdapters, pNumAdapters);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Releases the adapter handle reference indicating end of its usage
///
/// @details
/// - When the reference count of the adapter reaches zero, the adapter may
/// perform adapter-specififc resource teardown. Resources must be left in
/// a state where it safe for the adapter to be subsequently reinitialized
/// with ::urAdapterGet
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hAdapter`
ur_result_t UR_APICALL urAdapterRelease(
/// [in][release] Adapter handle to release
ur_adapter_handle_t hAdapter) try {
auto pfnAdapterRelease =
ur_lib::getContext()->urDdiTable.Global.pfnAdapterRelease;
if (nullptr == pfnAdapterRelease)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnAdapterRelease(hAdapter);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Get a reference to the adapter handle.
///
/// @details
/// - Get a reference to the adapter handle. Increment its reference count
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hAdapter`
ur_result_t UR_APICALL urAdapterRetain(
/// [in][retain] Adapter handle to retain
ur_adapter_handle_t hAdapter) try {
auto pfnAdapterRetain =
ur_lib::getContext()->urDdiTable.Global.pfnAdapterRetain;
if (nullptr == pfnAdapterRetain)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnAdapterRetain(hAdapter);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Get the last adapter specific error.
///
/// @details
/// To be used after another entry-point has returned
/// ::UR_RESULT_ERROR_ADAPTER_SPECIFIC in order to retrieve a message describing
/// the circumstances of the underlying driver error and the error code
/// returned by the failed driver entry-point.
///
/// * Implementations *must* store the message and error code in thread-local
/// storage prior to returning ::UR_RESULT_ERROR_ADAPTER_SPECIFIC.
///
/// * The message and error code storage is will only be valid if a previously
/// called entry-point returned ::UR_RESULT_ERROR_ADAPTER_SPECIFIC.
///
/// * The memory pointed to by the C string returned in `ppMessage` is owned by
/// the adapter and *must* be null terminated.
///
/// * The application *may* call this function from simultaneous threads.
///
/// * The implementation of this function *should* be lock-free.
///
/// Example usage:
///
/// ```cpp
/// if (::urQueueCreate(hContext, hDevice, nullptr, &hQueue) ==
/// ::UR_RESULT_ERROR_ADAPTER_SPECIFIC) {
/// const char* pMessage;
/// int32_t error;
/// ::urAdapterGetLastError(hAdapter, &pMessage, &error);
/// }
/// ```
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hAdapter`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == ppMessage`
/// + `NULL == pError`
ur_result_t UR_APICALL urAdapterGetLastError(
/// [in] handle of the adapter instance
ur_adapter_handle_t hAdapter,
/// [out] pointer to a C string where the adapter specific error message
/// will be stored.
const char **ppMessage,
/// [out] pointer to an integer where the adapter specific error code will
/// be stored.
int32_t *pError) try {
auto pfnAdapterGetLastError =
ur_lib::getContext()->urDdiTable.Global.pfnAdapterGetLastError;
if (nullptr == pfnAdapterGetLastError)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnAdapterGetLastError(hAdapter, ppMessage, pError);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves information about the adapter
///
/// @details
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hAdapter`
/// - ::UR_RESULT_ERROR_INVALID_ENUMERATION
/// + `::UR_ADAPTER_INFO_VERSION < propName`
/// - ::UR_RESULT_ERROR_UNSUPPORTED_ENUMERATION
/// + If `propName` is not supported by the adapter.
/// - ::UR_RESULT_ERROR_INVALID_SIZE
/// + `propSize == 0 && pPropValue != NULL`
/// + If `propSize` is less than the real number of bytes needed to
/// return the info.
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `propSize != 0 && pPropValue == NULL`
/// + `pPropValue == NULL && pPropSizeRet == NULL`
/// - ::UR_RESULT_ERROR_OUT_OF_RESOURCES
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
ur_result_t UR_APICALL urAdapterGetInfo(
/// [in] handle of the adapter
ur_adapter_handle_t hAdapter,
/// [in] type of the info to retrieve
ur_adapter_info_t propName,
/// [in] the number of bytes pointed to by pPropValue.
size_t propSize,
/// [out][optional][typename(propName, propSize)] array of bytes holding
/// the info.
/// If Size is not equal to or greater to the real number of bytes needed
/// to return the info then the ::UR_RESULT_ERROR_INVALID_SIZE error is
/// returned and pPropValue is not used.
void *pPropValue,
/// [out][optional] pointer to the actual number of bytes being queried by
/// pPropValue.
size_t *pPropSizeRet) try {
auto pfnAdapterGetInfo =
ur_lib::getContext()->urDdiTable.Global.pfnAdapterGetInfo;
if (nullptr == pfnAdapterGetInfo)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnAdapterGetInfo(hAdapter, propName, propSize, pPropValue,
pPropSizeRet);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves all available platforms for the given adapters
///
/// @details
/// - Multiple calls to this function will return identical platforms
/// handles, in the same order.
/// - The application may call this function from simultaneous threads, the
/// implementation must be thread-safe
///
/// @remarks
/// _Analogues_
/// - **clGetPlatformIDs**
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == phAdapters`
/// - ::UR_RESULT_ERROR_INVALID_SIZE
/// + `NumEntries == 0 && phPlatforms != NULL`
/// - ::UR_RESULT_ERROR_INVALID_VALUE
/// + `pNumPlatforms == NULL && phPlatforms == NULL`
ur_result_t UR_APICALL urPlatformGet(
/// [in][range(0, NumAdapters)] array of adapters to query for platforms.
ur_adapter_handle_t *phAdapters,
/// [in] number of adapters pointed to by phAdapters
uint32_t NumAdapters,
/// [in] the number of platforms to be added to phPlatforms.
/// If phPlatforms is not NULL, then NumEntries should be greater than
/// zero, otherwise ::UR_RESULT_ERROR_INVALID_SIZE,
/// will be returned.
uint32_t NumEntries,
/// [out][optional][range(0, NumEntries)] array of handle of platforms.
/// If NumEntries is less than the number of platforms available, then
/// ::urPlatformGet shall only retrieve that number of platforms.
ur_platform_handle_t *phPlatforms,
/// [out][optional] returns the total number of platforms available.
uint32_t *pNumPlatforms) try {
auto pfnGet = ur_lib::getContext()->urDdiTable.Platform.pfnGet;
if (nullptr == pfnGet)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnGet(phAdapters, NumAdapters, NumEntries, phPlatforms,
pNumPlatforms);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves various information about platform
///
/// @details
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @remarks
/// _Analogues_
/// - **clGetPlatformInfo**
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hPlatform`
/// - ::UR_RESULT_ERROR_INVALID_ENUMERATION
/// + `::UR_PLATFORM_INFO_ADAPTER < propName`
/// - ::UR_RESULT_ERROR_UNSUPPORTED_ENUMERATION
/// + If `propName` is not supported by the adapter.
/// - ::UR_RESULT_ERROR_INVALID_SIZE
/// + `propSize == 0 && pPropValue != NULL`
/// + If `propSize` is less than the real number of bytes needed to
/// return the info.
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `propSize != 0 && pPropValue == NULL`
/// + `pPropValue == NULL && pPropSizeRet == NULL`
/// - ::UR_RESULT_ERROR_INVALID_PLATFORM
/// - ::UR_RESULT_ERROR_OUT_OF_RESOURCES
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
ur_result_t UR_APICALL urPlatformGetInfo(
/// [in] handle of the platform
ur_platform_handle_t hPlatform,
/// [in] type of the info to retrieve
ur_platform_info_t propName,
/// [in] the number of bytes pointed to by pPlatformInfo.
size_t propSize,
/// [out][optional][typename(propName, propSize)] array of bytes holding
/// the info.
/// If Size is not equal to or greater to the real number of bytes needed
/// to return the info then the ::UR_RESULT_ERROR_INVALID_SIZE error is
/// returned and pPlatformInfo is not used.
void *pPropValue,
/// [out][optional] pointer to the actual number of bytes being queried by
/// pPlatformInfo.
size_t *pPropSizeRet) try {
auto pfnGetInfo = ur_lib::getContext()->urDdiTable.Platform.pfnGetInfo;
if (nullptr == pfnGetInfo)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnGetInfo(hPlatform, propName, propSize, pPropValue, pPropSizeRet);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Returns the API version supported by the specified platform
///
/// @details
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hPlatform`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == pVersion`
ur_result_t UR_APICALL urPlatformGetApiVersion(
/// [in] handle of the platform
ur_platform_handle_t hPlatform,
/// [out] api version
ur_api_version_t *pVersion) try {
auto pfnGetApiVersion =
ur_lib::getContext()->urDdiTable.Platform.pfnGetApiVersion;
if (nullptr == pfnGetApiVersion)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnGetApiVersion(hPlatform, pVersion);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Return platform native platform handle.
///
/// @details
/// - Retrieved native handle can be used for direct interaction with the
/// native platform driver.
/// - Use interoperability platform extensions to convert native handle to
/// native type.
/// - The application may call this function from simultaneous threads for
/// the same context.
/// - The implementation of this function should be thread-safe.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hPlatform`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == phNativePlatform`
/// - ::UR_RESULT_ERROR_UNSUPPORTED_FEATURE
/// + If the adapter has no underlying equivalent handle.
ur_result_t UR_APICALL urPlatformGetNativeHandle(
/// [in] handle of the platform.
ur_platform_handle_t hPlatform,
/// [out] a pointer to the native handle of the platform.
ur_native_handle_t *phNativePlatform) try {
auto pfnGetNativeHandle =
ur_lib::getContext()->urDdiTable.Platform.pfnGetNativeHandle;
if (nullptr == pfnGetNativeHandle)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnGetNativeHandle(hPlatform, phNativePlatform);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Create runtime platform object from native platform handle.
///
/// @details
/// - Creates runtime platform handle from native driver platform handle.
/// - The application may call this function from simultaneous threads for
/// the same context.
/// - The implementation of this function should be thread-safe.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hAdapter`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == phPlatform`
/// - ::UR_RESULT_ERROR_UNSUPPORTED_FEATURE
/// + If the adapter has no underlying equivalent handle.
ur_result_t UR_APICALL urPlatformCreateWithNativeHandle(
/// [in][nocheck] the native handle of the platform.
ur_native_handle_t hNativePlatform,
/// [in] handle of the adapter associated with the native backend.
ur_adapter_handle_t hAdapter,
/// [in][optional] pointer to native platform properties struct.
const ur_platform_native_properties_t *pProperties,
/// [out][alloc] pointer to the handle of the platform object created.
ur_platform_handle_t *phPlatform) try {
auto pfnCreateWithNativeHandle =
ur_lib::getContext()->urDdiTable.Platform.pfnCreateWithNativeHandle;
if (nullptr == pfnCreateWithNativeHandle)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnCreateWithNativeHandle(hNativePlatform, hAdapter, pProperties,
phPlatform);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Get the platform specific compiler backend option from a generic
/// frontend option.
///
/// @details
/// - The string returned via the ppPlatformOption is a NULL terminated C
/// style string.
/// - The string returned via the ppPlatformOption is thread local.
/// - The memory in the string returned via the ppPlatformOption is owned by
/// the adapter.
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hPlatform`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NULL == pFrontendOption`
/// + `NULL == ppPlatformOption`
/// - ::UR_RESULT_ERROR_INVALID_VALUE
/// + If `pFrontendOption` is not a valid frontend option.
ur_result_t UR_APICALL urPlatformGetBackendOption(
/// [in] handle of the platform instance.
ur_platform_handle_t hPlatform,
/// [in] string containing the frontend option.
const char *pFrontendOption,
/// [out] returns the correct platform specific compiler option based on
/// the frontend option.
const char **ppPlatformOption) try {
auto pfnGetBackendOption =
ur_lib::getContext()->urDdiTable.Platform.pfnGetBackendOption;
if (nullptr == pfnGetBackendOption)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnGetBackendOption(hPlatform, pFrontendOption, ppPlatformOption);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves devices within a platform
///
/// @details
/// - Multiple calls to this function will return identical device handles,
/// in the same order.
/// - The number and order of handles returned from this function can be
/// affected by environment variables that filter devices exposed through
/// API.
/// - The returned devices are taken a reference of and must be released
/// with a subsequent call to ::urDeviceRelease.
/// - The application may call this function from simultaneous threads, the
/// implementation must be thread-safe
///
/// @remarks
/// _Analogues_
/// - **clGetDeviceIDs**
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hPlatform`
/// - ::UR_RESULT_ERROR_INVALID_ENUMERATION
/// + `::UR_DEVICE_TYPE_VPU < DeviceType`
/// - ::UR_RESULT_ERROR_INVALID_SIZE
/// + `NumEntries == 0 && phDevices != NULL`
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `NumEntries > 0 && phDevices == NULL`
/// - ::UR_RESULT_ERROR_INVALID_VALUE
ur_result_t UR_APICALL urDeviceGet(
/// [in] handle of the platform instance
ur_platform_handle_t hPlatform,
/// [in] the type of the devices.
ur_device_type_t DeviceType,
/// [in] the number of devices to be added to phDevices.
/// If phDevices is not NULL, then NumEntries should be greater than zero.
/// Otherwise ::UR_RESULT_ERROR_INVALID_SIZE
/// will be returned.
uint32_t NumEntries,
/// [out][optional][range(0, NumEntries)][alloc] array of handle of devices.
/// If NumEntries is less than the number of devices available, then
/// platform shall only retrieve that number of devices.
ur_device_handle_t *phDevices,
/// [out][optional] pointer to the number of devices.
/// pNumDevices will be updated with the total number of devices available.
uint32_t *pNumDevices) try {
auto pfnGet = ur_lib::getContext()->urDdiTable.Device.pfnGet;
if (nullptr == pfnGet)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnGet(hPlatform, DeviceType, NumEntries, phDevices, pNumDevices);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves devices within a platform selected by
/// ONEAPI_DEVICE_SELECTOR
///
/// @details
/// - Multiple calls to this function will return identical device handles,
/// in the same order.
/// - The number and order of handles returned from this function will be
/// affected by environment variables that filter or select which devices
/// are exposed through this API.
/// - A reference is taken for each returned device and must be released
/// with a subsequent call to ::urDeviceRelease.
/// - The application may call this function from simultaneous threads, the
/// implementation must be thread-safe.
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hPlatform`
/// - ::UR_RESULT_ERROR_INVALID_ENUMERATION
/// + `::UR_DEVICE_TYPE_VPU < DeviceType`
/// - ::UR_RESULT_ERROR_INVALID_VALUE
ur_result_t UR_APICALL urDeviceGetSelected(
/// [in] handle of the platform instance
ur_platform_handle_t hPlatform,
/// [in] the type of the devices.
ur_device_type_t DeviceType,
/// [in] the number of devices to be added to phDevices.
/// If phDevices in not NULL then NumEntries should be greater than zero,
/// otherwise ::UR_RESULT_ERROR_INVALID_VALUE,
/// will be returned.
uint32_t NumEntries,
/// [out][optional][range(0, NumEntries)] array of handle of devices.
/// If NumEntries is less than the number of devices available, then only
/// that number of devices will be retrieved.
ur_device_handle_t *phDevices,
/// [out][optional] pointer to the number of devices.
/// pNumDevices will be updated with the total number of selected devices
/// available for the given platform.
uint32_t *pNumDevices) try {
return ur_lib::urDeviceGetSelected(hPlatform, DeviceType, NumEntries,
phDevices, pNumDevices);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Retrieves various information about device
///
/// @details
/// - The application may call this function from simultaneous threads.
/// - The implementation of this function should be lock-free.
///
/// @remarks
/// _Analogues_
/// - **clGetDeviceInfo**
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hDevice`
/// - ::UR_RESULT_ERROR_INVALID_ENUMERATION
/// + `::UR_DEVICE_INFO_2D_BLOCK_ARRAY_CAPABILITIES_EXP < propName`
/// - ::UR_RESULT_ERROR_UNSUPPORTED_ENUMERATION
/// + If `propName` is not supported by the adapter.
/// - ::UR_RESULT_ERROR_INVALID_SIZE
/// + `propSize == 0 && pPropValue != NULL`
/// + If `propSize` is less than the real number of bytes needed to
/// return the info.
/// - ::UR_RESULT_ERROR_INVALID_NULL_POINTER
/// + `propSize != 0 && pPropValue == NULL`
/// + `pPropValue == NULL && pPropSizeRet == NULL`
/// - ::UR_RESULT_ERROR_INVALID_DEVICE
/// - ::UR_RESULT_ERROR_OUT_OF_RESOURCES
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
ur_result_t UR_APICALL urDeviceGetInfo(
/// [in] handle of the device instance
ur_device_handle_t hDevice,
/// [in] type of the info to retrieve
ur_device_info_t propName,
/// [in] the number of bytes pointed to by pPropValue.
size_t propSize,
/// [out][optional][typename(propName, propSize)] array of bytes holding
/// the info.
/// If propSize is not equal to or greater than the real number of bytes
/// needed to return the info
/// then the ::UR_RESULT_ERROR_INVALID_SIZE error is returned and
/// pPropValue is not used.
void *pPropValue,
/// [out][optional] pointer to the actual size in bytes of the queried
/// propName.
size_t *pPropSizeRet) try {
auto pfnGetInfo = ur_lib::getContext()->urDdiTable.Device.pfnGetInfo;
if (nullptr == pfnGetInfo)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnGetInfo(hDevice, propName, propSize, pPropValue, pPropSizeRet);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Makes a reference of the device handle indicating it's in use until
/// paired ::urDeviceRelease is called
///
/// @details
/// - Increments the device reference count if `hDevice` is a valid
/// sub-device created by a call to `urDevicePartition`. If `hDevice` is a
/// root level device (e.g. obtained with `urDeviceGet`), the reference
/// count remains unchanged.
/// - It is not valid to use the device handle, which has all of its
/// references released.
/// - The application may call this function from simultaneous threads for
/// the same device.
/// - The implementation of this function should be thread-safe.
///
/// @remarks
/// _Analogues_
/// - **clRetainDevice**
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hDevice`
ur_result_t UR_APICALL urDeviceRetain(
/// [in][retain] handle of the device to get a reference of.
ur_device_handle_t hDevice) try {
auto pfnRetain = ur_lib::getContext()->urDdiTable.Device.pfnRetain;
if (nullptr == pfnRetain)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnRetain(hDevice);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Releases the device handle reference indicating end of its usage
///
/// @details
/// - Decrements the device reference count if `hDevice` is a valid
/// sub-device created by a call to `urDevicePartition`. If `hDevice` is a
/// root level device (e.g. obtained with `urDeviceGet`), the reference
/// count remains unchanged.
/// - The application may call this function from simultaneous threads for
/// the same device.
/// - The implementation of this function should be thread-safe.
///
/// @remarks
/// _Analogues_
/// - **clReleaseDevice**
///
/// @returns
/// - ::UR_RESULT_SUCCESS
/// - ::UR_RESULT_ERROR_UNINITIALIZED
/// - ::UR_RESULT_ERROR_DEVICE_LOST
/// - ::UR_RESULT_ERROR_ADAPTER_SPECIFIC
/// - ::UR_RESULT_ERROR_INVALID_NULL_HANDLE
/// + `NULL == hDevice`
ur_result_t UR_APICALL urDeviceRelease(
/// [in][release] handle of the device to release.
ur_device_handle_t hDevice) try {
auto pfnRelease = ur_lib::getContext()->urDdiTable.Device.pfnRelease;
if (nullptr == pfnRelease)
return UR_RESULT_ERROR_UNINITIALIZED;
return pfnRelease(hDevice);
} catch (...) {
return exceptionToResult(std::current_exception());
}
///////////////////////////////////////////////////////////////////////////////
/// @brief Partition the device into sub-devices
///
/// @details
/// - Repeated calls to this function with the same inputs will produce the
/// same output in the same order.
/// - The function may be called to request a further partitioning of a
/// sub-device into sub-sub-devices, and so on.
/// - The application may call this function from simultaneous threads for
/// the same device.
/// - The implementation of this function should be thread-safe.
///
/// @remarks
/// _Analogues_
/// - **clCreateSubDevices**
///
/// @returns