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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
|
/*
*
* Copyright (C) 2019-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
* @file zet_ddi.h
* @version v1.15-r1.15.26
*
*/
#ifndef _ZET_DDI_H
#define _ZET_DDI_H
#if defined(__cplusplus)
#pragma once
#endif
#include "zet_api.h"
#if defined(__cplusplus)
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricProgrammableGetExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricProgrammableGetExp_t)(
zet_device_handle_t,
uint32_t*,
zet_metric_programmable_exp_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricProgrammableGetPropertiesExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricProgrammableGetPropertiesExp_t)(
zet_metric_programmable_exp_handle_t,
zet_metric_programmable_exp_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricProgrammableGetParamInfoExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricProgrammableGetParamInfoExp_t)(
zet_metric_programmable_exp_handle_t,
uint32_t*,
zet_metric_programmable_param_info_exp_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricProgrammableGetParamValueInfoExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricProgrammableGetParamValueInfoExp_t)(
zet_metric_programmable_exp_handle_t,
uint32_t,
uint32_t*,
zet_metric_programmable_param_value_info_exp_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricProgrammableExp functions pointers
typedef struct _zet_metric_programmable_exp_dditable_t
{
zet_pfnMetricProgrammableGetExp_t pfnGetExp;
zet_pfnMetricProgrammableGetPropertiesExp_t pfnGetPropertiesExp;
zet_pfnMetricProgrammableGetParamInfoExp_t pfnGetParamInfoExp;
zet_pfnMetricProgrammableGetParamValueInfoExp_t pfnGetParamValueInfoExp;
} zet_metric_programmable_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricProgrammableExp 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
zetGetMetricProgrammableExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_programmable_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricProgrammableExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricProgrammableExpProcAddrTable_t)(
ze_api_version_t,
zet_metric_programmable_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricTracerCreateExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricTracerCreateExp_t)(
zet_context_handle_t,
zet_device_handle_t,
uint32_t,
zet_metric_group_handle_t*,
zet_metric_tracer_exp_desc_t*,
ze_event_handle_t,
zet_metric_tracer_exp_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricTracerDestroyExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricTracerDestroyExp_t)(
zet_metric_tracer_exp_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricTracerEnableExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricTracerEnableExp_t)(
zet_metric_tracer_exp_handle_t,
ze_bool_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricTracerDisableExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricTracerDisableExp_t)(
zet_metric_tracer_exp_handle_t,
ze_bool_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricTracerReadDataExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricTracerReadDataExp_t)(
zet_metric_tracer_exp_handle_t,
size_t*,
uint8_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricTracerDecodeExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricTracerDecodeExp_t)(
zet_metric_decoder_exp_handle_t,
size_t*,
uint8_t*,
uint32_t,
zet_metric_handle_t*,
uint32_t*,
uint32_t*,
uint32_t*,
zet_metric_entry_exp_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricTracerExp functions pointers
typedef struct _zet_metric_tracer_exp_dditable_t
{
zet_pfnMetricTracerCreateExp_t pfnCreateExp;
zet_pfnMetricTracerDestroyExp_t pfnDestroyExp;
zet_pfnMetricTracerEnableExp_t pfnEnableExp;
zet_pfnMetricTracerDisableExp_t pfnDisableExp;
zet_pfnMetricTracerReadDataExp_t pfnReadDataExp;
zet_pfnMetricTracerDecodeExp_t pfnDecodeExp;
} zet_metric_tracer_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricTracerExp 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
zetGetMetricTracerExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_tracer_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricTracerExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricTracerExpProcAddrTable_t)(
ze_api_version_t,
zet_metric_tracer_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricDecoderCreateExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricDecoderCreateExp_t)(
zet_metric_tracer_exp_handle_t,
zet_metric_decoder_exp_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricDecoderDestroyExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricDecoderDestroyExp_t)(
zet_metric_decoder_exp_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricDecoderGetDecodableMetricsExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricDecoderGetDecodableMetricsExp_t)(
zet_metric_decoder_exp_handle_t,
uint32_t*,
zet_metric_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricDecoderExp functions pointers
typedef struct _zet_metric_decoder_exp_dditable_t
{
zet_pfnMetricDecoderCreateExp_t pfnCreateExp;
zet_pfnMetricDecoderDestroyExp_t pfnDestroyExp;
zet_pfnMetricDecoderGetDecodableMetricsExp_t pfnGetDecodableMetricsExp;
} zet_metric_decoder_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricDecoderExp 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
zetGetMetricDecoderExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_decoder_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricDecoderExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricDecoderExpProcAddrTable_t)(
ze_api_version_t,
zet_metric_decoder_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDeviceGetDebugProperties
typedef ze_result_t (ZE_APICALL *zet_pfnDeviceGetDebugProperties_t)(
zet_device_handle_t,
zet_device_debug_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Device functions pointers
typedef struct _zet_device_dditable_t
{
zet_pfnDeviceGetDebugProperties_t pfnGetDebugProperties;
} zet_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
zetGetDeviceProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_device_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetDeviceProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetDeviceProcAddrTable_t)(
ze_api_version_t,
zet_device_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDeviceGetConcurrentMetricGroupsExp
typedef ze_result_t (ZE_APICALL *zet_pfnDeviceGetConcurrentMetricGroupsExp_t)(
zet_device_handle_t,
uint32_t,
zet_metric_group_handle_t *,
uint32_t *,
uint32_t *
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDeviceCreateMetricGroupsFromMetricsExp
typedef ze_result_t (ZE_APICALL *zet_pfnDeviceCreateMetricGroupsFromMetricsExp_t)(
zet_device_handle_t,
uint32_t,
zet_metric_handle_t *,
const char *,
const char *,
uint32_t *,
zet_metric_group_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDeviceEnableMetricsExp
typedef ze_result_t (ZE_APICALL *zet_pfnDeviceEnableMetricsExp_t)(
zet_device_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDeviceDisableMetricsExp
typedef ze_result_t (ZE_APICALL *zet_pfnDeviceDisableMetricsExp_t)(
zet_device_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of DeviceExp functions pointers
typedef struct _zet_device_exp_dditable_t
{
zet_pfnDeviceGetConcurrentMetricGroupsExp_t pfnGetConcurrentMetricGroupsExp;
zet_pfnDeviceCreateMetricGroupsFromMetricsExp_t pfnCreateMetricGroupsFromMetricsExp;
zet_pfnDeviceEnableMetricsExp_t pfnEnableMetricsExp;
zet_pfnDeviceDisableMetricsExp_t pfnDisableMetricsExp;
} zet_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
zetGetDeviceExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_device_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetDeviceExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetDeviceExpProcAddrTable_t)(
ze_api_version_t,
zet_device_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetContextActivateMetricGroups
typedef ze_result_t (ZE_APICALL *zet_pfnContextActivateMetricGroups_t)(
zet_context_handle_t,
zet_device_handle_t,
uint32_t,
zet_metric_group_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Context functions pointers
typedef struct _zet_context_dditable_t
{
zet_pfnContextActivateMetricGroups_t pfnActivateMetricGroups;
} zet_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
zetGetContextProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_context_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetContextProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetContextProcAddrTable_t)(
ze_api_version_t,
zet_context_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetCommandListAppendMetricStreamerMarker
typedef ze_result_t (ZE_APICALL *zet_pfnCommandListAppendMetricStreamerMarker_t)(
zet_command_list_handle_t,
zet_metric_streamer_handle_t,
uint32_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetCommandListAppendMetricQueryBegin
typedef ze_result_t (ZE_APICALL *zet_pfnCommandListAppendMetricQueryBegin_t)(
zet_command_list_handle_t,
zet_metric_query_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetCommandListAppendMetricQueryEnd
typedef ze_result_t (ZE_APICALL *zet_pfnCommandListAppendMetricQueryEnd_t)(
zet_command_list_handle_t,
zet_metric_query_handle_t,
ze_event_handle_t,
uint32_t,
ze_event_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetCommandListAppendMetricMemoryBarrier
typedef ze_result_t (ZE_APICALL *zet_pfnCommandListAppendMetricMemoryBarrier_t)(
zet_command_list_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of CommandList functions pointers
typedef struct _zet_command_list_dditable_t
{
zet_pfnCommandListAppendMetricStreamerMarker_t pfnAppendMetricStreamerMarker;
zet_pfnCommandListAppendMetricQueryBegin_t pfnAppendMetricQueryBegin;
zet_pfnCommandListAppendMetricQueryEnd_t pfnAppendMetricQueryEnd;
zet_pfnCommandListAppendMetricMemoryBarrier_t pfnAppendMetricMemoryBarrier;
} zet_command_list_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's CommandList 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
zetGetCommandListProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_command_list_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetCommandListProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetCommandListProcAddrTable_t)(
ze_api_version_t,
zet_command_list_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetCommandListAppendMarkerExp
typedef ze_result_t (ZE_APICALL *zet_pfnCommandListAppendMarkerExp_t)(
zet_command_list_handle_t,
zet_metric_group_handle_t,
uint32_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of CommandListExp functions pointers
typedef struct _zet_command_list_exp_dditable_t
{
zet_pfnCommandListAppendMarkerExp_t pfnAppendMarkerExp;
} zet_command_list_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's CommandListExp 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
zetGetCommandListExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_command_list_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetCommandListExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetCommandListExpProcAddrTable_t)(
ze_api_version_t,
zet_command_list_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetModuleGetDebugInfo
typedef ze_result_t (ZE_APICALL *zet_pfnModuleGetDebugInfo_t)(
zet_module_handle_t,
zet_module_debug_info_format_t,
size_t*,
uint8_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Module functions pointers
typedef struct _zet_module_dditable_t
{
zet_pfnModuleGetDebugInfo_t pfnGetDebugInfo;
} zet_module_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Module 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
zetGetModuleProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_module_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetModuleProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetModuleProcAddrTable_t)(
ze_api_version_t,
zet_module_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetKernelGetProfileInfo
typedef ze_result_t (ZE_APICALL *zet_pfnKernelGetProfileInfo_t)(
zet_kernel_handle_t,
zet_profile_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Kernel functions pointers
typedef struct _zet_kernel_dditable_t
{
zet_pfnKernelGetProfileInfo_t pfnGetProfileInfo;
} zet_kernel_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Kernel 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
zetGetKernelProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_kernel_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetKernelProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetKernelProcAddrTable_t)(
ze_api_version_t,
zet_kernel_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGet
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGet_t)(
zet_metric_group_handle_t,
uint32_t*,
zet_metric_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGetProperties
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGetProperties_t)(
zet_metric_handle_t,
zet_metric_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Metric functions pointers
typedef struct _zet_metric_dditable_t
{
zet_pfnMetricGet_t pfnGet;
zet_pfnMetricGetProperties_t pfnGetProperties;
} zet_metric_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Metric 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
zetGetMetricProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricProcAddrTable_t)(
ze_api_version_t,
zet_metric_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricCreateFromProgrammableExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricCreateFromProgrammableExp_t)(
zet_metric_programmable_exp_handle_t,
zet_metric_programmable_param_value_exp_t*,
uint32_t,
const char*,
const char*,
uint32_t*,
zet_metric_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricDestroyExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricDestroyExp_t)(
zet_metric_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricCreateFromProgrammableExp2
typedef ze_result_t (ZE_APICALL *zet_pfnMetricCreateFromProgrammableExp2_t)(
zet_metric_programmable_exp_handle_t,
uint32_t,
zet_metric_programmable_param_value_exp_t*,
const char*,
const char*,
uint32_t*,
zet_metric_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricExp functions pointers
typedef struct _zet_metric_exp_dditable_t
{
zet_pfnMetricCreateFromProgrammableExp_t pfnCreateFromProgrammableExp;
zet_pfnMetricDestroyExp_t pfnDestroyExp;
zet_pfnMetricCreateFromProgrammableExp2_t pfnCreateFromProgrammableExp2;
} zet_metric_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricExp 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
zetGetMetricExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricExpProcAddrTable_t)(
ze_api_version_t,
zet_metric_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupGet
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupGet_t)(
zet_device_handle_t,
uint32_t*,
zet_metric_group_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupGetProperties
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupGetProperties_t)(
zet_metric_group_handle_t,
zet_metric_group_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupCalculateMetricValues
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupCalculateMetricValues_t)(
zet_metric_group_handle_t,
zet_metric_group_calculation_type_t,
size_t,
const uint8_t*,
uint32_t*,
zet_typed_value_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricGroup functions pointers
typedef struct _zet_metric_group_dditable_t
{
zet_pfnMetricGroupGet_t pfnGet;
zet_pfnMetricGroupGetProperties_t pfnGetProperties;
zet_pfnMetricGroupCalculateMetricValues_t pfnCalculateMetricValues;
} zet_metric_group_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricGroup 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
zetGetMetricGroupProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_group_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricGroupProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricGroupProcAddrTable_t)(
ze_api_version_t,
zet_metric_group_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupCalculateMultipleMetricValuesExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupCalculateMultipleMetricValuesExp_t)(
zet_metric_group_handle_t,
zet_metric_group_calculation_type_t,
size_t,
const uint8_t*,
uint32_t*,
uint32_t*,
uint32_t*,
zet_typed_value_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupGetGlobalTimestampsExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupGetGlobalTimestampsExp_t)(
zet_metric_group_handle_t,
ze_bool_t,
uint64_t*,
uint64_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupGetExportDataExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupGetExportDataExp_t)(
zet_metric_group_handle_t,
const uint8_t*,
size_t,
size_t*,
uint8_t *
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupCalculateMetricExportDataExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupCalculateMetricExportDataExp_t)(
ze_driver_handle_t,
zet_metric_group_calculation_type_t,
size_t,
const uint8_t*,
zet_metric_calculate_exp_desc_t*,
uint32_t*,
uint32_t*,
uint32_t*,
zet_typed_value_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupCreateExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupCreateExp_t)(
zet_device_handle_t,
const char*,
const char*,
zet_metric_group_sampling_type_flags_t,
zet_metric_group_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupAddMetricExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupAddMetricExp_t)(
zet_metric_group_handle_t,
zet_metric_handle_t,
size_t *,
char*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupRemoveMetricExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupRemoveMetricExp_t)(
zet_metric_group_handle_t,
zet_metric_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupCloseExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupCloseExp_t)(
zet_metric_group_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricGroupDestroyExp
typedef ze_result_t (ZE_APICALL *zet_pfnMetricGroupDestroyExp_t)(
zet_metric_group_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricGroupExp functions pointers
typedef struct _zet_metric_group_exp_dditable_t
{
zet_pfnMetricGroupCalculateMultipleMetricValuesExp_t pfnCalculateMultipleMetricValuesExp;
zet_pfnMetricGroupGetGlobalTimestampsExp_t pfnGetGlobalTimestampsExp;
zet_pfnMetricGroupGetExportDataExp_t pfnGetExportDataExp;
zet_pfnMetricGroupCalculateMetricExportDataExp_t pfnCalculateMetricExportDataExp;
zet_pfnMetricGroupCreateExp_t pfnCreateExp;
zet_pfnMetricGroupAddMetricExp_t pfnAddMetricExp;
zet_pfnMetricGroupRemoveMetricExp_t pfnRemoveMetricExp;
zet_pfnMetricGroupCloseExp_t pfnCloseExp;
zet_pfnMetricGroupDestroyExp_t pfnDestroyExp;
} zet_metric_group_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricGroupExp 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
zetGetMetricGroupExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_group_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricGroupExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricGroupExpProcAddrTable_t)(
ze_api_version_t,
zet_metric_group_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricStreamerOpen
typedef ze_result_t (ZE_APICALL *zet_pfnMetricStreamerOpen_t)(
zet_context_handle_t,
zet_device_handle_t,
zet_metric_group_handle_t,
zet_metric_streamer_desc_t*,
ze_event_handle_t,
zet_metric_streamer_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricStreamerClose
typedef ze_result_t (ZE_APICALL *zet_pfnMetricStreamerClose_t)(
zet_metric_streamer_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricStreamerReadData
typedef ze_result_t (ZE_APICALL *zet_pfnMetricStreamerReadData_t)(
zet_metric_streamer_handle_t,
uint32_t,
size_t*,
uint8_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricStreamer functions pointers
typedef struct _zet_metric_streamer_dditable_t
{
zet_pfnMetricStreamerOpen_t pfnOpen;
zet_pfnMetricStreamerClose_t pfnClose;
zet_pfnMetricStreamerReadData_t pfnReadData;
} zet_metric_streamer_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricStreamer 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
zetGetMetricStreamerProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_streamer_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricStreamerProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricStreamerProcAddrTable_t)(
ze_api_version_t,
zet_metric_streamer_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricQueryPoolCreate
typedef ze_result_t (ZE_APICALL *zet_pfnMetricQueryPoolCreate_t)(
zet_context_handle_t,
zet_device_handle_t,
zet_metric_group_handle_t,
const zet_metric_query_pool_desc_t*,
zet_metric_query_pool_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricQueryPoolDestroy
typedef ze_result_t (ZE_APICALL *zet_pfnMetricQueryPoolDestroy_t)(
zet_metric_query_pool_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricQueryPool functions pointers
typedef struct _zet_metric_query_pool_dditable_t
{
zet_pfnMetricQueryPoolCreate_t pfnCreate;
zet_pfnMetricQueryPoolDestroy_t pfnDestroy;
} zet_metric_query_pool_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricQueryPool 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
zetGetMetricQueryPoolProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_query_pool_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricQueryPoolProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricQueryPoolProcAddrTable_t)(
ze_api_version_t,
zet_metric_query_pool_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricQueryCreate
typedef ze_result_t (ZE_APICALL *zet_pfnMetricQueryCreate_t)(
zet_metric_query_pool_handle_t,
uint32_t,
zet_metric_query_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricQueryDestroy
typedef ze_result_t (ZE_APICALL *zet_pfnMetricQueryDestroy_t)(
zet_metric_query_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricQueryReset
typedef ze_result_t (ZE_APICALL *zet_pfnMetricQueryReset_t)(
zet_metric_query_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetMetricQueryGetData
typedef ze_result_t (ZE_APICALL *zet_pfnMetricQueryGetData_t)(
zet_metric_query_handle_t,
size_t*,
uint8_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of MetricQuery functions pointers
typedef struct _zet_metric_query_dditable_t
{
zet_pfnMetricQueryCreate_t pfnCreate;
zet_pfnMetricQueryDestroy_t pfnDestroy;
zet_pfnMetricQueryReset_t pfnReset;
zet_pfnMetricQueryGetData_t pfnGetData;
} zet_metric_query_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's MetricQuery 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
zetGetMetricQueryProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_metric_query_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetMetricQueryProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetMetricQueryProcAddrTable_t)(
ze_api_version_t,
zet_metric_query_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetTracerExpCreate
typedef ze_result_t (ZE_APICALL *zet_pfnTracerExpCreate_t)(
zet_context_handle_t,
const zet_tracer_exp_desc_t*,
zet_tracer_exp_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetTracerExpDestroy
typedef ze_result_t (ZE_APICALL *zet_pfnTracerExpDestroy_t)(
zet_tracer_exp_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetTracerExpSetPrologues
typedef ze_result_t (ZE_APICALL *zet_pfnTracerExpSetPrologues_t)(
zet_tracer_exp_handle_t,
zet_core_callbacks_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetTracerExpSetEpilogues
typedef ze_result_t (ZE_APICALL *zet_pfnTracerExpSetEpilogues_t)(
zet_tracer_exp_handle_t,
zet_core_callbacks_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetTracerExpSetEnabled
typedef ze_result_t (ZE_APICALL *zet_pfnTracerExpSetEnabled_t)(
zet_tracer_exp_handle_t,
ze_bool_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of TracerExp functions pointers
typedef struct _zet_tracer_exp_dditable_t
{
zet_pfnTracerExpCreate_t pfnCreate;
zet_pfnTracerExpDestroy_t pfnDestroy;
zet_pfnTracerExpSetPrologues_t pfnSetPrologues;
zet_pfnTracerExpSetEpilogues_t pfnSetEpilogues;
zet_pfnTracerExpSetEnabled_t pfnSetEnabled;
} zet_tracer_exp_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's TracerExp 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
zetGetTracerExpProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_tracer_exp_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetTracerExpProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetTracerExpProcAddrTable_t)(
ze_api_version_t,
zet_tracer_exp_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugAttach
typedef ze_result_t (ZE_APICALL *zet_pfnDebugAttach_t)(
zet_device_handle_t,
const zet_debug_config_t*,
zet_debug_session_handle_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugDetach
typedef ze_result_t (ZE_APICALL *zet_pfnDebugDetach_t)(
zet_debug_session_handle_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugReadEvent
typedef ze_result_t (ZE_APICALL *zet_pfnDebugReadEvent_t)(
zet_debug_session_handle_t,
uint64_t,
zet_debug_event_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugAcknowledgeEvent
typedef ze_result_t (ZE_APICALL *zet_pfnDebugAcknowledgeEvent_t)(
zet_debug_session_handle_t,
const zet_debug_event_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugInterrupt
typedef ze_result_t (ZE_APICALL *zet_pfnDebugInterrupt_t)(
zet_debug_session_handle_t,
ze_device_thread_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugResume
typedef ze_result_t (ZE_APICALL *zet_pfnDebugResume_t)(
zet_debug_session_handle_t,
ze_device_thread_t
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugReadMemory
typedef ze_result_t (ZE_APICALL *zet_pfnDebugReadMemory_t)(
zet_debug_session_handle_t,
ze_device_thread_t,
const zet_debug_memory_space_desc_t*,
size_t,
void*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugWriteMemory
typedef ze_result_t (ZE_APICALL *zet_pfnDebugWriteMemory_t)(
zet_debug_session_handle_t,
ze_device_thread_t,
const zet_debug_memory_space_desc_t*,
size_t,
const void*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugGetRegisterSetProperties
typedef ze_result_t (ZE_APICALL *zet_pfnDebugGetRegisterSetProperties_t)(
zet_device_handle_t,
uint32_t*,
zet_debug_regset_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugReadRegisters
typedef ze_result_t (ZE_APICALL *zet_pfnDebugReadRegisters_t)(
zet_debug_session_handle_t,
ze_device_thread_t,
uint32_t,
uint32_t,
uint32_t,
void*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugWriteRegisters
typedef ze_result_t (ZE_APICALL *zet_pfnDebugWriteRegisters_t)(
zet_debug_session_handle_t,
ze_device_thread_t,
uint32_t,
uint32_t,
uint32_t,
void*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetDebugGetThreadRegisterSetProperties
typedef ze_result_t (ZE_APICALL *zet_pfnDebugGetThreadRegisterSetProperties_t)(
zet_debug_session_handle_t,
ze_device_thread_t,
uint32_t*,
zet_debug_regset_properties_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Table of Debug functions pointers
typedef struct _zet_debug_dditable_t
{
zet_pfnDebugAttach_t pfnAttach;
zet_pfnDebugDetach_t pfnDetach;
zet_pfnDebugReadEvent_t pfnReadEvent;
zet_pfnDebugAcknowledgeEvent_t pfnAcknowledgeEvent;
zet_pfnDebugInterrupt_t pfnInterrupt;
zet_pfnDebugResume_t pfnResume;
zet_pfnDebugReadMemory_t pfnReadMemory;
zet_pfnDebugWriteMemory_t pfnWriteMemory;
zet_pfnDebugGetRegisterSetProperties_t pfnGetRegisterSetProperties;
zet_pfnDebugReadRegisters_t pfnReadRegisters;
zet_pfnDebugWriteRegisters_t pfnWriteRegisters;
zet_pfnDebugGetThreadRegisterSetProperties_t pfnGetThreadRegisterSetProperties;
} zet_debug_dditable_t;
///////////////////////////////////////////////////////////////////////////////
/// @brief Exported function for filling application's Debug 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
zetGetDebugProcAddrTable(
ze_api_version_t version, ///< [in] API version requested
zet_debug_dditable_t* pDdiTable ///< [in,out] pointer to table of DDI function pointers
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Function-pointer for zetGetDebugProcAddrTable
typedef ze_result_t (ZE_APICALL *zet_pfnGetDebugProcAddrTable_t)(
ze_api_version_t,
zet_debug_dditable_t*
);
///////////////////////////////////////////////////////////////////////////////
/// @brief Container for all DDI tables
typedef struct _zet_dditable_t
{
zet_metric_programmable_exp_dditable_t MetricProgrammableExp;
zet_metric_tracer_exp_dditable_t MetricTracerExp;
zet_metric_decoder_exp_dditable_t MetricDecoderExp;
zet_device_dditable_t Device;
zet_device_exp_dditable_t DeviceExp;
zet_context_dditable_t Context;
zet_command_list_dditable_t CommandList;
zet_command_list_exp_dditable_t CommandListExp;
zet_module_dditable_t Module;
zet_kernel_dditable_t Kernel;
zet_metric_dditable_t Metric;
zet_metric_exp_dditable_t MetricExp;
zet_metric_group_dditable_t MetricGroup;
zet_metric_group_exp_dditable_t MetricGroupExp;
zet_metric_streamer_dditable_t MetricStreamer;
zet_metric_query_pool_dditable_t MetricQueryPool;
zet_metric_query_dditable_t MetricQuery;
zet_tracer_exp_dditable_t TracerExp;
zet_debug_dditable_t Debug;
} zet_dditable_t;
/// @brief Container for all DDI tables with version and tables set by the Driver
typedef struct _zet_dditable_driver_t
{
ze_api_version_t version;
uint8_t isValidFlag;
zet_metric_programmable_exp_dditable_t * MetricProgrammableExp;
zet_metric_tracer_exp_dditable_t * MetricTracerExp;
zet_metric_decoder_exp_dditable_t * MetricDecoderExp;
zet_device_dditable_t * Device;
zet_device_exp_dditable_t * DeviceExp;
zet_context_dditable_t * Context;
zet_command_list_dditable_t * CommandList;
zet_command_list_exp_dditable_t * CommandListExp;
zet_module_dditable_t * Module;
zet_kernel_dditable_t * Kernel;
zet_metric_dditable_t * Metric;
zet_metric_exp_dditable_t * MetricExp;
zet_metric_group_dditable_t * MetricGroup;
zet_metric_group_exp_dditable_t * MetricGroupExp;
zet_metric_streamer_dditable_t * MetricStreamer;
zet_metric_query_pool_dditable_t * MetricQueryPool;
zet_metric_query_dditable_t * MetricQuery;
zet_tracer_exp_dditable_t * TracerExp;
zet_debug_dditable_t * Debug;
} zet_dditable_driver_t;
#if defined(__cplusplus)
} // extern "C"
#endif
#endif // _ZET_DDI_H
|