Вход на сайт

Просмотр новости

Найдите то, что Вас интересует

Minisforum N5 Pro NAS – NPU with FastFlowLM

Дата публикации: 19-08-2026 12:12:52

FastFlowLM puts the Minisforum N5 Pro’s 50 TOPS AMD XDNA 2 NPU to work under Linux for local LLMs and private AI server workloads.
The post Minisforum N5 Pro NAS – NPU with FastFlowLM appeared first on LinuxLinks.


Основное содержимое страницы с новостью.

The Minisforum N5 Pro is a five-bay NAS with considerably more computing power than the typical home or small-business storage appliance. At its heart is AMD’s Ryzen AI 9 HX PRO 370, a 12-core, 24-thread processor that gives the system serious potential beyond simply serving files. Storage expansion is equally impressive, with five SATA drive bays complemented by multiple M.2/U.2 slots.

One capability I did not explore during my review was the processor’s integrated NPU. Based on AMD’s XDNA 2 architecture, it delivers up to 50 TOPS of dedicated AI performance and can handle workloads such as image recognition and document analysis without tying up the CPU. This makes the N5 Pro an intriguing platform for private, always-on AI services.

FastFlowLM provides a practical way to put that NPU to work. This lightweight runtime runs large language models directly on AMD XDNA 2 hardware, largely leaving the CPU and Radeon GPU available for storage, media and other services. Processing takes place locally, so prompts and responses remain on the NAS rather than being sent to the cloud.

Linux support is still comparatively new and requires the correct amdxdna driver, firmware and XRT stack, but once configured, FastFlowLM turns an otherwise underused component into an energy-efficient local AI accelerator.

Installing FastFlowLM

As my N5 Pro is running Ubuntu 26.04 LTS, I downloaded the appropriate DEB package from the official FastFlowLM releases page.

$ wget https://github.com/ROCm/FastFlowLM/releases/download/v1.0.0/fastflowlm_1.0.0_ubuntu26.04_amd64.deb

I then installed the package with dpkg.

$ sudo dpkg -i ./fastflowlm_*.deb

The installation reported a few missing dependencies. The following command downloaded and installed them, completing the FastFlowLM installation.

$ sudo apt -f install

Installing FastFlowLM on Ubuntu 26.04 LTS

Validating the Installation

$ flm validate

Validate

The validation check reported that the locked-memory limit was too low, so I edited /etc/security/limits.conf.

$ sudo nano /etc/security/limits.conf

I added the following lines at the bottom of the file.

* soft memlock unlimited
* hard memlock unlimited

I then rebooted the system for the changes to take effect.

$ sudo reboot

Validate success

Everything now looks good, so let’s run a small model to confirm that the complete NPU stack is working.

$ flm run llama3.2:1b

Running a small model

Benchmarks

FastFlowLM includes a dedicated benchmark command:

$ flm bench llama3.2:1b

Benchmark

The benchmark confirms that this small model is very usable on the NPU.

  • At context lengths of 1K–4K, it generates 51–57 tokens/s, with the first token appearing within about 0.7–2 seconds.
  • At 8K, it still achieves 44 tokens/s with a four-second wait.
  • Even at 32K, generation remains comfortable at 24 tokens/s.

The only weakness is time to first token with very long contexts: nearly 29 seconds at 32K. For ordinary chat and document work at shorter context lengths, throughput is excellent, especially given that the NPU leaves the CPU and GPU available for other work.

By default, FastFlowLM 1.0 performs two iterations at each context length. To use four iterations:

$ flm bench llama3.2:1b --bench-iterations 4

Four iterations

The llama3.2:1b model contains roughly one billion parameters. It is designed for lightweight local chat, summarising, rewriting and simple information extraction. However, its answers, reasoning and coding ability are significantly weaker than those of larger models.

My N5 Pro currently has 32GB of RAM. With that memory amount, 8B–9B is probably the best everyday model size.

$ flm bench qwen3:8b

Bigger model

At shorter context lengths, the 8B model reaches 10.6 tokens/s. This is usable, although not especially fast. It remains reasonably responsive with short prompts, but a 32K context is painfully slow: more than two minutes elapse before the first token appears.

Running FastFlowLM as a Server

FastFlowLM includes an OpenAI-compatible server mode, allowing the N5 Pro to operate as a local, NPU-powered AI server.

To make it available over the LAN, I started it with:

$ flm serve llama3.2:1b --host 0.0.0.0 --port 52625

The model name can be replaced with any model supported by FastFlowLM. I can then send a query from another computer:

Query sent to the NAS

Summary

Performance with small models is excellent, while an 8B model remains usable for everyday local AI tasks, although very long contexts introduce substantial delays. The OpenAI-compatible server mode is particularly appealing, effectively turning the N5 Pro into a private AI server for other machines on the LAN while leaving the CPU and GPU available for the NAS’s other duties.

Linux support for XDNA 2 is still comparatively new, but that should not be confused with being difficult to use. With the required driver and runtime stack already available, getting FastFlowLM running on the NPU proved relatively painless and adds another genuinely useful role to an already unusually capable NAS.


Complete list of articles in this series:

Minisforum N5 Pro NAS
Hardware ReviewFive-Bay NAS with Ryzen AI 9 Power
MinisCloud OSCustomised Linux NAS operating system
NPUUsing the NPU with FastFlowLM
More articles to be published next week

Схожие новости

#Наименование новостиТональностьИнформативностьДата публикации
1The Ryzen AI Powered BeeLink SER9 Pro Mini PC012.3725-02-2025
2HS5 – self-hosted object storage service018.4218-08-2026
3NVIDIA Finally Releases GeForce NOW for Linux016.0814-08-2026
4Тест и обзор: UGREEN NASync iDX6011 Pro — NAS премиум-класса с локальными функциями ИИ017.8512-08-2026
5Terax – terminal-first AI-native development workspace021.2519-08-2026
6Beelink выпускает мини-ПК ME Pro NAS на базе гибридного процессора AMD Ryzen AI 9 HX 470019.8612-08-2026
7Linux finally follows Windows and makes a CPU feature requirement mandatory013.2616-08-2026
8Нейро сети для самых маленьких. Часть первая (которая после нулевой). Удобство в прокрустовом ложе оптимизации07.5401-07-2026
9AMD Ryzen AI Halo Box RGB LED Driver Inches Closer To The Mainline Kernel2709-07-2026
10AI is causing a massive headache for Linux and laying the groundwork for legal issues013.7628-05-2026

Классификация: Пресс-релизы. Схожих патентов: 0. Схожих новостей: 10. Тональность: 0. Информативность: 13.42. Источник: www.linuxlinks.com.