Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/qvac-lib-infer-nmtcpp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.1.0] - 2026-04-22

### Added

- Dynamic GGML backend loading for GPU acceleration. The NMT addon now discovers GGML backend plugins (OpenCL, Vulkan) at runtime via a new `NmtLazyInitializeBackend` singleton, mirroring the LLM addon's `LlamaLazyInitializeBackend` pattern.
- New `backendsDir` config param — points at the directory containing GGML backend `.so` plugins (e.g. the Android APK's native-lib path), unblocking GPU-backed inference on Android.
- New `openclCacheDir` config param — caches compiled OpenCL kernels for faster startup on subsequent loads.
- GPU backend `.so` plugins are installed into prebuilds via the `GGML_AVAILABLE_BACKENDS` CMake loop.

## [2.0.3] - 2026-04-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/qvac-lib-infer-nmtcpp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qvac/translation-nmtcpp",
"version": "2.0.3",
"version": "2.1.0",
"description": "translation addon for qvac",
"addon": true,
"engines": {
Expand Down
Loading