| /* |
| * 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. |
| */ |
| |
| /*! |
| * \file cuda_fallback_module.h |
| * \brief Codegen-facing CUDA module factory. |
| * |
| * `CUDAModuleCreateWithFallback` is the ONLY entry point codegen uses to |
| * construct a CUDA `ffi::Module`. It tries the runtime-registered factory |
| * "ffi.Module.create.cuda" via the FFI registry; on miss it constructs a |
| * `CUDAFallbackModuleNode` directly. The fallback exists so that codegen |
| * can succeed on a build where the CUDA runtime is not linked. This |
| * setup is helpful for cross compilation where we compile on one env |
| * and run on another. |
| */ |
| #ifndef TVM_TARGET_CUDA_CUDA_FALLBACK_MODULE_H_ |
| #define TVM_TARGET_CUDA_CUDA_FALLBACK_MODULE_H_ |
| |
| #include <tvm/ffi/container/map.h> |
| #include <tvm/ffi/extra/module.h> |
| #include <tvm/ffi/function.h> |
| |
| #include <utility> |
| |
| #include "../../runtime/metadata.h" |
| #include "../../support/env.h" |
| |
| namespace tvm { |
| namespace target { |
| |
| /*! |
| * \brief Construct a `CUDAFallbackModuleNode` directly (no FFI registry |
| * round-trip). Used by `CUDAModuleCreateWithFallback` and by tests |
| * that explicitly want a fallback instance. |
| */ |
| ffi::Module CUDAFallbackModuleCreate(ffi::Bytes code, ffi::String fmt, |
| ffi::Map<ffi::String, runtime::FunctionInfo> fmap, |
| ffi::Map<ffi::String, ffi::String> source); |
| |
| /*! |
| * \brief Codegen-time CUDA module factory. Tries the FFI-registered |
| * "ffi.Module.create.cuda"; on miss or when forced via env var, |
| * falls back to `CUDAFallbackModuleCreate`. |
| * |
| * - Registry hit (USE_CUDA=ON build) → real `CUDAModuleNode` returned. |
| * - Registry miss (USE_CUDA=OFF build) → `CUDAFallbackModuleNode` returned. |
| * - `TVM_COMPILE_FORCE_FALLBACK` env var truthy → fallback regardless of |
| * registry state (used by per-backend fallback tests on a USE_X=ON CI |
| * box). |
| */ |
| inline ffi::Module CUDAModuleCreateWithFallback(ffi::Bytes code, ffi::String fmt, |
| ffi::Map<ffi::String, runtime::FunctionInfo> fmap, |
| ffi::Map<ffi::String, ffi::String> source) { |
| if (tvm::support::GetEnv<bool>("TVM_COMPILE_FORCE_FALLBACK", false)) { |
| return CUDAFallbackModuleCreate(std::move(code), std::move(fmt), std::move(fmap), |
| std::move(source)); |
| } |
| // Registry: "ffi.Module.create.cuda" — real CUDA runtime factory. |
| // Grep hint: grep -rn 'ffi.Module.create.cuda' src/ |
| auto fcreate = ffi::Function::GetGlobal("ffi.Module.create.cuda"); |
| if (fcreate.has_value()) { |
| return (*fcreate)(code, fmt, fmap, source).cast<ffi::Module>(); |
| } |
| return CUDAFallbackModuleCreate(std::move(code), std::move(fmt), std::move(fmap), |
| std::move(source)); |
| } |
| |
| } // namespace target |
| } // namespace tvm |
| #endif // TVM_TARGET_CUDA_CUDA_FALLBACK_MODULE_H_ |