LLM/Ryzen AI 7 350/2026-07-09: Difference between revisions
< LLM | Ryzen AI 7 350
Jump to navigation
Jump to search
| Line 70: | Line 70: | ||
ulimit -l | ulimit -l | ||
flm validate | flm validate | ||
sudo systemctl edit lemond | |||
</syntaxhighlight> | |||
<pre> | |||
[Service] | |||
Environment="LEMONADE_ENABLE_NPU=true" | |||
</pre> | |||
<syntaxhighlight lang="bash"> | |||
sudo systemctl daemon-reload | |||
sudo systemctl restart lemond | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 04:59, 9 July 2026
Install lemonade from PPA
sudo add-apt-repository ppa:lemonade-team/stable
sudo apt update
sudo apt install lemonade-server
Run lemonade server
sudo systemctl start lemond
sudo systemctl enable lemond
Install Backends
Open http://localhost:13305, then ...
Install llama.cpp cuda
- Click backends at left sidebar.
- Find Llama.cpp GPU
- Find child item cuda
- Click download
Install Fastflow
- Click backends at left sidebar.
- Find FastFlowLM NPU
- Find child item npu
- Click download
- Install XDNA driver
sudo apt install amdxdna-dkms
sudo reboot
- Get FastFlowLM release from https://github.com/FastFlowLM/FastFlowLM/releases/
- Download the latest db for Ubuntu 26.04
cd 下載
sudo apt install ./fastflowlm_0.9.44_ubuntu26.04_amd64.deb
flm --version
flm validate
Memlock limit is too low (8MB). Please ...
sudo nano /etc/security/limits.conf
Add before `# End of file`
* soft memlock unlimited * hard memlock unlimited
sudo reboot
ulimit -l
flm validate
sudo systemctl edit lemond
[Service] Environment="LEMONADE_ENABLE_NPU=true"
sudo systemctl daemon-reload
sudo systemctl restart lemond