Files
wehub-resource-sync b5ecf06f65
Code Format Check / format-check (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:24:32 +08:00

21 lines
614 B
C++

#pragma once
#include "compiler.hpp"
#include "include_parser.hpp"
#include "kernel_runtime.hpp"
namespace deep_ep::jit {
static void init(const std::string& library_root_path,
const std::string& cuda_home_path_by_python, const std::string& nccl_root_path_by_python) {
Compiler::prepare_init(library_root_path, cuda_home_path_by_python, nccl_root_path_by_python);
KernelRuntime::prepare_init(cuda_home_path_by_python);
IncludeParser::prepare_init(library_root_path);
}
static void register_apis(pybind11::module_& m) {
m.def("init_jit", &init);
}
} // namespace deep_ep::jit