/* * 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. */ // LINT_C_FILE #include #include #include #include #include #include #include #include #include #include #include "crt_config.h" void* TVMBackendAllocWorkspace(int device_type, int device_id, uint64_t nbytes, int dtype_code_hint, int dtype_bits_hint) { tvm_crt_error_t err = kTvmErrorNoError; void* ptr = 0; DLDevice dev = {device_type, device_id}; assert(nbytes > 0); err = TVMPlatformMemoryAllocate(nbytes, dev, &ptr); CHECK_EQ(err, kTvmErrorNoError, "TVMBackendAllocWorkspace(%d, %d, %" PRIu64 ", %d, %d) -> %" PRId32, device_type, device_id, nbytes, dtype_code_hint, dtype_bits_hint, err); return ptr; } int TVMBackendFreeWorkspace(int device_type, int device_id, void* ptr) { tvm_crt_error_t err = kTvmErrorNoError; DLDevice dev = {device_type, device_id}; err = TVMPlatformMemoryFree(ptr, dev); return err; } int TVMBackendParallelLaunch(FTVMParallelLambda flambda, void* cdata, int num_task) { TVMParallelGroupEnv env; env.num_task = 1; flambda(0, &env, cdata); return 0; } int TVMBackendRegisterSystemLibSymbol(const char* name, void* ptr) { return TVMFuncRegisterGlobal(name, ptr, 0); }