| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| #include <stdarg.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <tvm/runtime/c_runtime_api.h> |
| #include <tvm/runtime/crt/crt.h> |
| #include <tvm/runtime/crt/graph_executor.h> |
| #include <tvm/runtime/crt/packed_func.h> |
| #include <tvm/runtime/crt/page_allocator.h> |
| |
| #ifdef ENABLE_TVM_ABORT_BACKTRACE |
| #include "backtrace.h" |
| #endif |
| |
| #define CRT_MEMORY_NUM_PAGES 16384 |
| #define CRT_MEMORY_PAGE_SIZE_LOG2 10 |
| |
| static uint8_t g_crt_memory[CRT_MEMORY_NUM_PAGES * (1 << CRT_MEMORY_PAGE_SIZE_LOG2)]; |
| static MemoryManagerInterface* g_memory_manager; |
| |
| /*! \brief macro to do C API call */ |
| #define TVM_CCALL(func) \ |
| do { \ |
| int ret = (func); \ |
| if (ret != 0) { \ |
| fprintf(stderr, "%s: %d: error: %s\n", __FILE__, __LINE__, TVMGetLastError()); \ |
| exit(ret); \ |
| } \ |
| } while (0) |
| |
| TVM_DLL void* tvm_runtime_create(const char* json_data, const char* params_data, |
| const uint64_t params_size, const char* argv0) { |
| #ifdef ENABLE_TVM_ABORT_BACKTRACE |
| g_argv0 = argv0; |
| #endif |
| |
| int64_t device_type = kDLCPU; |
| int64_t device_id = 0; |
| |
| TVMByteArray params; |
| params.data = params_data; |
| params.size = params_size; |
| |
| DLDevice dev; |
| dev.device_type = (DLDeviceType)device_type; |
| dev.device_id = device_id; |
| |
| // declare pointers |
| TVM_CCALL(PageMemoryManagerCreate(&g_memory_manager, g_crt_memory, sizeof(g_crt_memory), |
| CRT_MEMORY_PAGE_SIZE_LOG2)); |
| TVM_CCALL(TVMInitializeRuntime()); |
| TVMPackedFunc pf; |
| TVMArgs args = TVMArgs_Create(NULL, NULL, 0); |
| TVM_CCALL(TVMPackedFunc_InitGlobalFunc(&pf, "runtime.SystemLib", &args)); |
| TVM_CCALL(TVMPackedFunc_Call(&pf)); |
| |
| TVMModuleHandle mod_syslib = TVMArgs_AsModuleHandle(&pf.ret_value, 0); |
| |
| // run modules |
| TVMGraphExecutor* graph_executor = NULL; |
| TVM_CCALL(TVMGraphExecutor_Create(json_data, mod_syslib, &dev, &graph_executor)); |
| TVM_CCALL(TVMGraphExecutor_LoadParams(graph_executor, params.data, params.size)); |
| |
| return graph_executor; |
| } |
| |
| TVM_DLL void tvm_runtime_destroy(void* executor) { |
| TVMGraphExecutor_Release((TVMGraphExecutor**)&executor); |
| } |
| |
| TVM_DLL void tvm_runtime_set_input(void* executor, const char* name, DLTensor* tensor) { |
| TVMGraphExecutor* graph_executor = (TVMGraphExecutor*)executor; |
| TVMGraphExecutor_SetInput(graph_executor, name, tensor); |
| } |
| |
| TVM_DLL void tvm_runtime_run(void* executor) { |
| TVMGraphExecutor* graph_executor = (TVMGraphExecutor*)executor; |
| TVMGraphExecutor_Run(graph_executor); |
| } |
| |
| TVM_DLL void tvm_runtime_get_output(void* executor, int32_t index, DLTensor* tensor) { |
| TVMGraphExecutor* graph_executor = (TVMGraphExecutor*)executor; |
| TVMGraphExecutor_GetOutput(graph_executor, index, tensor); |
| } |
| |
| void TVMLogf(const char* msg, ...) { |
| va_list args; |
| va_start(args, msg); |
| vfprintf(stderr, msg, args); |
| va_end(args); |
| } |
| |
| void __attribute__((noreturn)) TVMPlatformAbort(tvm_crt_error_t error_code) { |
| fprintf(stderr, "TVMPlatformAbort: %d\n", error_code); |
| #ifdef ENABLE_TVM_ABORT_BACKTRACE |
| tvm_platform_abort_backtrace(); |
| #endif |
| exit(-1); |
| } |
| |
| tvm_crt_error_t TVMPlatformMemoryAllocate(size_t num_bytes, DLDevice dev, void** out_ptr) { |
| return g_memory_manager->Allocate(g_memory_manager, num_bytes, dev, out_ptr); |
| } |
| |
| tvm_crt_error_t TVMPlatformMemoryFree(void* ptr, DLDevice dev) { |
| return g_memory_manager->Free(g_memory_manager, ptr, dev); |
| } |
| |
| tvm_crt_error_t TVMPlatformTimerStart() { return kTvmErrorFunctionCallNotImplemented; } |
| |
| tvm_crt_error_t TVMPlatformTimerStop(double* elapsed_time_seconds) { |
| return kTvmErrorFunctionCallNotImplemented; |
| } |