-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathze_ddi.h
2659 lines (2379 loc) · 106 KB
/
ze_ddi.h
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) 2019-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
* @file ze_ddi.h
* @version v1.12-r1.12.15
*
*/
#ifndef _ZE_DDI_H
#define _ZE_DDI_H
#if defined(__cplusplus)
#pragma once
#endif
#include "ze_api.h"
#if defined(__cplusplus)
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASBuilderCreateExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASBuilderCreateExp_t)(
ze_driver_handle_t,
const ze_rtas_builder_exp_desc_t*,
ze_rtas_builder_exp_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASBuilderGetBuildPropertiesExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASBuilderGetBuildPropertiesExp_t)(
ze_rtas_builder_exp_handle_t,
const ze_rtas_builder_build_op_exp_desc_t*,
ze_rtas_builder_exp_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASBuilderBuildExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASBuilderBuildExp_t)(
ze_rtas_builder_exp_handle_t,
const ze_rtas_builder_build_op_exp_desc_t*,
void*,
size_t,
void*,
size_t,
ze_rtas_parallel_operation_exp_handle_t,
void*,
ze_rtas_aabb_exp_t*,
size_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASBuilderDestroyExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASBuilderDestroyExp_t)(
ze_rtas_builder_exp_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of RTASBuilderExp functions pointers
typedef struct _ze_rtas_builder_exp_dditable_t
{
ze_pfnRTASBuilderCreateExp_t pfnCreateExp;
ze_pfnRTASBuilderGetBuildPropertiesExp_t pfnGetBuildPropertiesExp;
ze_pfnRTASBuilderBuildExp_t pfnBuildExp;
ze_pfnRTASBuilderDestroyExp_t pfnDestroyExp;
} ze_rtas_builder_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's RTASBuilderExp table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetRTASBuilderExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_rtas_builder_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetRTASBuilderExpProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetRTASBuilderExpProcAddrTable_t)(
ze_api_version_t,
ze_rtas_builder_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASParallelOperationCreateExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASParallelOperationCreateExp_t)(
ze_driver_handle_t,
ze_rtas_parallel_operation_exp_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASParallelOperationGetPropertiesExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASParallelOperationGetPropertiesExp_t)(
ze_rtas_parallel_operation_exp_handle_t,
ze_rtas_parallel_operation_exp_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASParallelOperationJoinExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASParallelOperationJoinExp_t)(
ze_rtas_parallel_operation_exp_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeRTASParallelOperationDestroyExp
typedef ze_result_t (ZE_APICALL *ze_pfnRTASParallelOperationDestroyExp_t)(
ze_rtas_parallel_operation_exp_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of RTASParallelOperationExp functions pointers
typedef struct _ze_rtas_parallel_operation_exp_dditable_t
{
ze_pfnRTASParallelOperationCreateExp_t pfnCreateExp;
ze_pfnRTASParallelOperationGetPropertiesExp_t pfnGetPropertiesExp;
ze_pfnRTASParallelOperationJoinExp_t pfnJoinExp;
ze_pfnRTASParallelOperationDestroyExp_t pfnDestroyExp;
} ze_rtas_parallel_operation_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's RTASParallelOperationExp table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetRTASParallelOperationExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_rtas_parallel_operation_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetRTASParallelOperationExpProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetRTASParallelOperationExpProcAddrTable_t)(
ze_api_version_t,
ze_rtas_parallel_operation_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeInit
typedef ze_result_t (ZE_APICALL *ze_pfnInit_t)(
ze_init_flags_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeInitDrivers
typedef ze_result_t (ZE_APICALL *ze_pfnInitDrivers_t)(
uint32_t*,
ze_driver_handle_t*,
ze_init_driver_type_desc_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Global functions pointers
typedef struct _ze_global_dditable_t
{
ze_pfnInit_t pfnInit;
ze_pfnInitDrivers_t pfnInitDrivers;
} ze_global_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Global table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetGlobalProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_global_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetGlobalProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetGlobalProcAddrTable_t)(
ze_api_version_t,
ze_global_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverGet
typedef ze_result_t (ZE_APICALL *ze_pfnDriverGet_t)(
uint32_t*,
ze_driver_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverGetApiVersion
typedef ze_result_t (ZE_APICALL *ze_pfnDriverGetApiVersion_t)(
ze_driver_handle_t,
ze_api_version_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverGetProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDriverGetProperties_t)(
ze_driver_handle_t,
ze_driver_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverGetIpcProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDriverGetIpcProperties_t)(
ze_driver_handle_t,
ze_driver_ipc_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverGetExtensionProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDriverGetExtensionProperties_t)(
ze_driver_handle_t,
uint32_t*,
ze_driver_extension_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverGetExtensionFunctionAddress
typedef ze_result_t (ZE_APICALL *ze_pfnDriverGetExtensionFunctionAddress_t)(
ze_driver_handle_t,
const char*,
void**
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverGetLastErrorDescription
typedef ze_result_t (ZE_APICALL *ze_pfnDriverGetLastErrorDescription_t)(
ze_driver_handle_t,
const char**
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Driver functions pointers
typedef struct _ze_driver_dditable_t
{
ze_pfnDriverGet_t pfnGet;
ze_pfnDriverGetApiVersion_t pfnGetApiVersion;
ze_pfnDriverGetProperties_t pfnGetProperties;
ze_pfnDriverGetIpcProperties_t pfnGetIpcProperties;
ze_pfnDriverGetExtensionProperties_t pfnGetExtensionProperties;
ze_pfnDriverGetExtensionFunctionAddress_t pfnGetExtensionFunctionAddress;
ze_pfnDriverGetLastErrorDescription_t pfnGetLastErrorDescription;
} ze_driver_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Driver table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetDriverProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_driver_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetDriverProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetDriverProcAddrTable_t)(
ze_api_version_t,
ze_driver_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDriverRTASFormatCompatibilityCheckExp
typedef ze_result_t (ZE_APICALL *ze_pfnDriverRTASFormatCompatibilityCheckExp_t)(
ze_driver_handle_t,
ze_rtas_format_exp_t,
ze_rtas_format_exp_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of DriverExp functions pointers
typedef struct _ze_driver_exp_dditable_t
{
ze_pfnDriverRTASFormatCompatibilityCheckExp_t pfnRTASFormatCompatibilityCheckExp;
} ze_driver_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's DriverExp table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetDriverExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_driver_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetDriverExpProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetDriverExpProcAddrTable_t)(
ze_api_version_t,
ze_driver_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGet
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGet_t)(
ze_driver_handle_t,
uint32_t*,
ze_device_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetSubDevices
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetSubDevices_t)(
ze_device_handle_t,
uint32_t*,
ze_device_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetProperties_t)(
ze_device_handle_t,
ze_device_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetComputeProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetComputeProperties_t)(
ze_device_handle_t,
ze_device_compute_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetModuleProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetModuleProperties_t)(
ze_device_handle_t,
ze_device_module_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetCommandQueueGroupProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetCommandQueueGroupProperties_t)(
ze_device_handle_t,
uint32_t*,
ze_command_queue_group_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetMemoryProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetMemoryProperties_t)(
ze_device_handle_t,
uint32_t*,
ze_device_memory_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetMemoryAccessProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetMemoryAccessProperties_t)(
ze_device_handle_t,
ze_device_memory_access_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetCacheProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetCacheProperties_t)(
ze_device_handle_t,
uint32_t*,
ze_device_cache_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetImageProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetImageProperties_t)(
ze_device_handle_t,
ze_device_image_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetExternalMemoryProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetExternalMemoryProperties_t)(
ze_device_handle_t,
ze_device_external_memory_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetP2PProperties
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetP2PProperties_t)(
ze_device_handle_t,
ze_device_handle_t,
ze_device_p2p_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceCanAccessPeer
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceCanAccessPeer_t)(
ze_device_handle_t,
ze_device_handle_t,
ze_bool_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetStatus
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetStatus_t)(
ze_device_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetGlobalTimestamps
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetGlobalTimestamps_t)(
ze_device_handle_t,
uint64_t*,
uint64_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceReserveCacheExt
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceReserveCacheExt_t)(
ze_device_handle_t,
size_t,
size_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceSetCacheAdviceExt
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceSetCacheAdviceExt_t)(
ze_device_handle_t,
void*,
size_t,
ze_cache_ext_region_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDevicePciGetPropertiesExt
typedef ze_result_t (ZE_APICALL *ze_pfnDevicePciGetPropertiesExt_t)(
ze_device_handle_t,
ze_pci_ext_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetRootDevice
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetRootDevice_t)(
ze_device_handle_t,
ze_device_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceImportExternalSemaphoreExt
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceImportExternalSemaphoreExt_t)(
ze_device_handle_t,
const ze_external_semaphore_ext_desc_t*,
ze_external_semaphore_ext_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceReleaseExternalSemaphoreExt
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceReleaseExternalSemaphoreExt_t)(
ze_external_semaphore_ext_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Device functions pointers
typedef struct _ze_device_dditable_t
{
ze_pfnDeviceGet_t pfnGet;
ze_pfnDeviceGetSubDevices_t pfnGetSubDevices;
ze_pfnDeviceGetProperties_t pfnGetProperties;
ze_pfnDeviceGetComputeProperties_t pfnGetComputeProperties;
ze_pfnDeviceGetModuleProperties_t pfnGetModuleProperties;
ze_pfnDeviceGetCommandQueueGroupProperties_t pfnGetCommandQueueGroupProperties;
ze_pfnDeviceGetMemoryProperties_t pfnGetMemoryProperties;
ze_pfnDeviceGetMemoryAccessProperties_t pfnGetMemoryAccessProperties;
ze_pfnDeviceGetCacheProperties_t pfnGetCacheProperties;
ze_pfnDeviceGetImageProperties_t pfnGetImageProperties;
ze_pfnDeviceGetExternalMemoryProperties_t pfnGetExternalMemoryProperties;
ze_pfnDeviceGetP2PProperties_t pfnGetP2PProperties;
ze_pfnDeviceCanAccessPeer_t pfnCanAccessPeer;
ze_pfnDeviceGetStatus_t pfnGetStatus;
ze_pfnDeviceGetGlobalTimestamps_t pfnGetGlobalTimestamps;
ze_pfnDeviceReserveCacheExt_t pfnReserveCacheExt;
ze_pfnDeviceSetCacheAdviceExt_t pfnSetCacheAdviceExt;
ze_pfnDevicePciGetPropertiesExt_t pfnPciGetPropertiesExt;
ze_pfnDeviceGetRootDevice_t pfnGetRootDevice;
ze_pfnDeviceImportExternalSemaphoreExt_t pfnImportExternalSemaphoreExt;
ze_pfnDeviceReleaseExternalSemaphoreExt_t pfnReleaseExternalSemaphoreExt;
} ze_device_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Device table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetDeviceProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_device_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetDeviceProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetDeviceProcAddrTable_t)(
ze_api_version_t,
ze_device_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeDeviceGetFabricVertexExp
typedef ze_result_t (ZE_APICALL *ze_pfnDeviceGetFabricVertexExp_t)(
ze_device_handle_t,
ze_fabric_vertex_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of DeviceExp functions pointers
typedef struct _ze_device_exp_dditable_t
{
ze_pfnDeviceGetFabricVertexExp_t pfnGetFabricVertexExp;
} ze_device_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's DeviceExp table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetDeviceExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_device_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetDeviceExpProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetDeviceExpProcAddrTable_t)(
ze_api_version_t,
ze_device_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextCreate
typedef ze_result_t (ZE_APICALL *ze_pfnContextCreate_t)(
ze_driver_handle_t,
const ze_context_desc_t*,
ze_context_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextDestroy
typedef ze_result_t (ZE_APICALL *ze_pfnContextDestroy_t)(
ze_context_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextGetStatus
typedef ze_result_t (ZE_APICALL *ze_pfnContextGetStatus_t)(
ze_context_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextSystemBarrier
typedef ze_result_t (ZE_APICALL *ze_pfnContextSystemBarrier_t)(
ze_context_handle_t,
ze_device_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextMakeMemoryResident
typedef ze_result_t (ZE_APICALL *ze_pfnContextMakeMemoryResident_t)(
ze_context_handle_t,
ze_device_handle_t,
void*,
size_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextEvictMemory
typedef ze_result_t (ZE_APICALL *ze_pfnContextEvictMemory_t)(
ze_context_handle_t,
ze_device_handle_t,
void*,
size_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextMakeImageResident
typedef ze_result_t (ZE_APICALL *ze_pfnContextMakeImageResident_t)(
ze_context_handle_t,
ze_device_handle_t,
ze_image_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextEvictImage
typedef ze_result_t (ZE_APICALL *ze_pfnContextEvictImage_t)(
ze_context_handle_t,
ze_device_handle_t,
ze_image_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeContextCreateEx
typedef ze_result_t (ZE_APICALL *ze_pfnContextCreateEx_t)(
ze_driver_handle_t,
const ze_context_desc_t*,
uint32_t,
ze_device_handle_t*,
ze_context_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Context functions pointers
typedef struct _ze_context_dditable_t
{
ze_pfnContextCreate_t pfnCreate;
ze_pfnContextDestroy_t pfnDestroy;
ze_pfnContextGetStatus_t pfnGetStatus;
ze_pfnContextSystemBarrier_t pfnSystemBarrier;
ze_pfnContextMakeMemoryResident_t pfnMakeMemoryResident;
ze_pfnContextEvictMemory_t pfnEvictMemory;
ze_pfnContextMakeImageResident_t pfnMakeImageResident;
ze_pfnContextEvictImage_t pfnEvictImage;
ze_pfnContextCreateEx_t pfnCreateEx;
} ze_context_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Context table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetContextProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_context_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetContextProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetContextProcAddrTable_t)(
ze_api_version_t,
ze_context_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandQueueCreate
typedef ze_result_t (ZE_APICALL *ze_pfnCommandQueueCreate_t)(
ze_context_handle_t,
ze_device_handle_t,
const ze_command_queue_desc_t*,
ze_command_queue_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandQueueDestroy
typedef ze_result_t (ZE_APICALL *ze_pfnCommandQueueDestroy_t)(
ze_command_queue_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandQueueExecuteCommandLists
typedef ze_result_t (ZE_APICALL *ze_pfnCommandQueueExecuteCommandLists_t)(
ze_command_queue_handle_t,
uint32_t,
ze_command_list_handle_t*,
ze_fence_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandQueueSynchronize
typedef ze_result_t (ZE_APICALL *ze_pfnCommandQueueSynchronize_t)(
ze_command_queue_handle_t,
uint64_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandQueueGetOrdinal
typedef ze_result_t (ZE_APICALL *ze_pfnCommandQueueGetOrdinal_t)(
ze_command_queue_handle_t,
uint32_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandQueueGetIndex
typedef ze_result_t (ZE_APICALL *ze_pfnCommandQueueGetIndex_t)(
ze_command_queue_handle_t,
uint32_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of CommandQueue functions pointers
typedef struct _ze_command_queue_dditable_t
{
ze_pfnCommandQueueCreate_t pfnCreate;
ze_pfnCommandQueueDestroy_t pfnDestroy;
ze_pfnCommandQueueExecuteCommandLists_t pfnExecuteCommandLists;
ze_pfnCommandQueueSynchronize_t pfnSynchronize;
ze_pfnCommandQueueGetOrdinal_t pfnGetOrdinal;
ze_pfnCommandQueueGetIndex_t pfnGetIndex;
} ze_command_queue_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's CommandQueue table
/// with current process' addresses
///
/// @returns
/// - ::ZE_RESULT_SUCCESS
/// - ::ZE_RESULT_ERROR_UNINITIALIZED
/// - ::ZE_RESULT_ERROR_INVALID_NULL_POINTER
/// - ::ZE_RESULT_ERROR_UNSUPPORTED_VERSION
ZE_DLLEXPORT ze_result_t ZE_APICALL
zeGetCommandQueueProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
ze_command_queue_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeGetCommandQueueProcAddrTable
typedef ze_result_t (ZE_APICALL *ze_pfnGetCommandQueueProcAddrTable_t)(
ze_api_version_t,
ze_command_queue_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListCreate
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListCreate_t)(
ze_context_handle_t,
ze_device_handle_t,
const ze_command_list_desc_t*,
ze_command_list_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListCreateImmediate
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListCreateImmediate_t)(
ze_context_handle_t,
ze_device_handle_t,
const ze_command_queue_desc_t*,
ze_command_list_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListDestroy
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListDestroy_t)(
ze_command_list_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListClose
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListClose_t)(
ze_command_list_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListReset
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListReset_t)(
ze_command_list_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendWriteGlobalTimestamp
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendWriteGlobalTimestamp_t)(
ze_command_list_handle_t,
uint64_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendBarrier
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendBarrier_t)(
ze_command_list_handle_t,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendMemoryRangesBarrier
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendMemoryRangesBarrier_t)(
ze_command_list_handle_t,
uint32_t,
const size_t*,
const void**,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendMemoryCopy
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendMemoryCopy_t)(
ze_command_list_handle_t,
void*,
const void*,
size_t,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendMemoryFill
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendMemoryFill_t)(
ze_command_list_handle_t,
void*,
const void*,
size_t,
size_t,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendMemoryCopyRegion
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendMemoryCopyRegion_t)(
ze_command_list_handle_t,
void*,
const ze_copy_region_t*,
uint32_t,
uint32_t,
const void*,
const ze_copy_region_t*,
uint32_t,
uint32_t,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendMemoryCopyFromContext
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendMemoryCopyFromContext_t)(
ze_command_list_handle_t,
void*,
ze_context_handle_t,
const void*,
size_t,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendImageCopy
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendImageCopy_t)(
ze_command_list_handle_t,
ze_image_handle_t,
ze_image_handle_t,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendImageCopyRegion
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendImageCopyRegion_t)(
ze_command_list_handle_t,
ze_image_handle_t,
ze_image_handle_t,
const ze_image_region_t*,
const ze_image_region_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendImageCopyToMemory
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendImageCopyToMemory_t)(
ze_command_list_handle_t,
void*,
ze_image_handle_t,
const ze_image_region_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendImageCopyFromMemory
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendImageCopyFromMemory_t)(
ze_command_list_handle_t,
ze_image_handle_t,
const void*,
const ze_image_region_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendMemoryPrefetch
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendMemoryPrefetch_t)(
ze_command_list_handle_t,
const void*,
size_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendMemAdvise
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendMemAdvise_t)(
ze_command_list_handle_t,
ze_device_handle_t,
const void*,
size_t,
ze_memory_advice_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendSignalEvent
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendSignalEvent_t)(
ze_command_list_handle_t,
ze_event_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendWaitOnEvents
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendWaitOnEvents_t)(
ze_command_list_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendEventReset
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendEventReset_t)(
ze_command_list_handle_t,
ze_event_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendQueryKernelTimestamps
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendQueryKernelTimestamps_t)(
ze_command_list_handle_t,
uint32_t,
ze_event_handle_t*,
void*,
const size_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendLaunchKernel
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendLaunchKernel_t)(
ze_command_list_handle_t,
ze_kernel_handle_t,
const ze_group_count_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendLaunchCooperativeKernel
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendLaunchCooperativeKernel_t)(
ze_command_list_handle_t,
ze_kernel_handle_t,
const ze_group_count_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zeCommandListAppendLaunchKernelIndirect
typedef ze_result_t (ZE_APICALL *ze_pfnCommandListAppendLaunchKernelIndirect_t)(
ze_command_list_handle_t,
ze_kernel_handle_t,
const ze_group_count_t*,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);