| #pragma once |
|
|
| #include "apir_backend.gen.h" |
|
|
| #include <stdint.h> |
| #include <time.h> |
|
|
| #define APIR_BACKEND_INITIALIZE_SUCCESS 0 |
| #define APIR_BACKEND_INITIALIZE_CANNOT_OPEN_BACKEND_LIBRARY 1 |
| #define APIR_BACKEND_INITIALIZE_CANNOT_OPEN_GGML_LIBRARY 2 |
| #define APIR_BACKEND_INITIALIZE_MISSING_BACKEND_SYMBOLS 3 |
| #define APIR_BACKEND_INITIALIZE_MISSING_GGML_SYMBOLS 4 |
| #define APIR_BACKEND_INITIALIZE_BACKEND_FAILED 5 |
| #define APIR_BACKEND_INITIALIZE_BACKEND_REG_FAILED 6 |
| #define APIR_BACKEND_INITIALIZE_ALREADY_INITED 7 |
| #define APIR_BACKEND_INITIALIZE_NO_DEVICE 8 |
| #define APIR_BACKEND_INITIALIZE_BACKEND_INIT_FAILED 9 |
|
|
| |
|
|
| #define APIR_BACKEND_FORWARD_INDEX_INVALID 6 |
|
|
| |
| #define APIR_BACKEND_CHECK_SUPPORTS_OP 0 |
|
|
| typedef uintptr_t apir_buffer_type_host_handle_t; |
| typedef uintptr_t apir_buffer_host_handle_t; |
|
|
| static const char * apir_backend_initialize_error(int code) { |
| #define APIR_BACKEND_INITIALIZE_ERROR(code_name) \ |
| do { \ |
| if (code == code_name) \ |
| return #code_name; \ |
| } while (0) |
|
|
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_SUCCESS); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_CANNOT_OPEN_BACKEND_LIBRARY); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_CANNOT_OPEN_GGML_LIBRARY); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_MISSING_BACKEND_SYMBOLS); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_MISSING_GGML_SYMBOLS); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_BACKEND_FAILED); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_BACKEND_REG_FAILED); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_ALREADY_INITED); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_NO_DEVICE); |
| APIR_BACKEND_INITIALIZE_ERROR(APIR_BACKEND_INITIALIZE_BACKEND_INIT_FAILED); |
|
|
| return "Unknown APIR_BACKEND_INITIALIZE error:/"; |
|
|
| #undef APIR_BACKEND_INITIALIZE_ERROR |
| } |
|
|