Accelerate multimodal Voice Assistant performance with KleidiAI and SME2
Introduction
Set up your environment
Overview
Build the Voice Assistant
Run the Voice Assistant
KleidiAI
Benchmark Voice Assistant
Performance
Performance with Streamline
Next Steps
Accelerate multimodal Voice Assistant performance with KleidiAI and SME2
Install dependencies
In this Learning Path, you’ll compile and run an Android Voice Assistant application.
Begin by installing the latest version of Android Studio on your development machine.
Next, install the following command-line tools:
cmake; a cross-platform build system.python3; interpreted programming language, used by project to fetch dependencies and models.git; a version control system that you use to clone the Voice Assistant codebase.adb; Android Debug Bridge, used to communicate with and control Android devices.
Install these tools with the appropriate command for your OS:
sudo apt update
sudo apt install git adb cmake python3 -y
brew install git android-platform-tools cmake python
Ensure the correct version of python is installed, the project needs python version 3.9 or later:
python3 --version
python3 --version