| 16 | namespace Driver { |
| 17 | |
| 18 | void loadPlugins(void) { |
| 19 | Plugin::Plugin::loadFromDefaultPaths(); |
| 20 | for (const auto &Plugin : Plugin::Plugin::plugins()) { |
| 21 | spdlog::info("Loaded Plugin: {} from path: {}"sv, Plugin.name(), |
| 22 | Plugin.path()); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | Runtime::Instance::ModuleInstance *createWasiNNModule() { |
| 27 | if (const auto *Plugin = Plugin::Plugin::find("wasi_nn"sv)) { |
no test coverage detected