To follow this Learning Path, you will need to set up an environment to develop with SME2.
You will require:
A compiler with support for SME2 instructions. You can use
Clang
version 18 or later, or
GCC
version 14, or later. This Learning
Path uses Clang
.
An emulator to execute code with the SME2 instructions. This Learning Path uses Arm’s Fixed Virtual Platform (FVP) model .
You will also require Git and Docker installed on your machine.
To check if Git is already installed on your machine, use the following command line in a terminal:
git --version
__output__git version 2.47.1
If the above command line fails with a message similar to “git: command not found
”, then install Git following the steps for your machine’s OS.
sudo apt install git
brew install git
To enable you to get started easily and with the tools that you need, you can fetch a Docker container with the required compiler and FVP. Alternatively, if you do wish to build the container yourself, the Dockerfile
is also available.
This Learning Path works without docker
, but the compiler and the FVP must be available in your search path.
Start by checking that docker
is installed on your machine by typing the following
command line in a terminal:
docker --version
__output__Docker version 27.3.1, build ce12230
If the above command fails with a message similar to “docker: command not found
”
then follow the steps from the
Docker Install Guide
.
You might need to login again or restart your machine for the changes to take effect.
Once you have confirmed that Docker is installed on your machine, you can check that it is operating normally with the following:
docker run hello-world
__output__Unable to find image 'hello-world:latest' locally
__output__latest: Pulling from library/hello-world
__output__478afc919002: Pull complete
__output__Digest: sha256:305243c734571da2d100c8c8b3c3167a098cab6049c9a5b066b6021a60fcb966
__output__Status: Downloaded newer image for hello-world:latest
__output__
__output__Hello from Docker!
__output__This message shows that your installation appears to be working correctly.
__output__
__output__To generate this message, Docker followed these steps:
__output__
__output__ 1. The Docker client contacted the Docker daemon.
__output__
__output__ 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
__output__ (arm64v8)
__output__
__output__ 3. The Docker daemon created a new container from that image which runs the
__output__ executable that produces the output you are currently reading.
__output__
__output__ 4. The Docker daemon streamed that output to the Docker client, which sent it
__output__ to your terminal.
__output__
__output__To try something more ambitious, you can run an Ubuntu container with:
__output__ $ docker run -it ubuntu bash
__output__
__output__Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
Now,
download the code examples
for this learning path, expand the archive and change your current directory to
code-examples/learning-paths/cross-platform/sme2
:
tar xfz code-examples-main-learning-paths-cross-platform-multiplying-matrices-with-sme2.tar.gz -s /code-examples-main-learning-paths-cross-platform-multiplying-matrices-with-sme2/code-examples/
cd code-examples/learning-paths/cross-platform/multiplying-matrices-with-sme2
This list of content in this directory should look like this :
code-examples/learning-paths/cross-platform/multiplying-matrices-with-sme2/
├── .clang-format
├── .devcontainer/
│ └── devcontainer.json
├── .git/
├── .gitignore
├── Makefile
├── README.rst
├── docker/
│ ├── assets.source_me
│ ├── build-all-containers.sh
│ ├── build-my-container.sh
│ └── sme2-environment.docker
├── hello.c
├── main.c
├── matmul.h
├── matmul_asm.c
├── matmul_asm_impl.S
├── matmul_intr.c
├── matmul_vanilla.c
├── misc.c
├── misc.h
├── preprocess_l_asm.S
├── preprocess_vanilla.c
├── run-fvp.sh
└── sme2_check.c
It contains:
Makefile
that builds the code examples.run-fvp.sh
that runs the FVP.docker
that contains materials related to Docker, which are:assets.source_me
that provides the FVP and compiler toolchain references.sme2-environment.docker
to build the container that
you will use.build-my-container.sh
that you can use if you want to build the Docker container. This is not essential however, as ready-made images are made available for you.build-all-containers.sh
that was used to create the image for you to download to provide multi-architecture support for both x86_64 and AArch64..devcontainer/devcontainer.json
.From this point in the Learning Path, all instructions assume that your current
directory is code-examples/learning-paths/cross-platform/multiplying-matrices-with-sme2
.
Docker containers provide you with the functionality to execute commands in an isolated environment, where you have all the necessary tools that you require without having to clutter your machine. The containers runs independently, which means that they do not interfere with other containers on the same machine or server.
You can use Docker in the following ways:
When a command is executed in the Docker container environment, you must prepend it with instructions on the command line so that your shell executes it within the container.
For example, to execute COMMAND ARGUMENTS
in the SME2 Docker container, the command line looks like this:
docker run --rm -v "$PWD:/work" -w /work armswdev/sme2-learning-path:sme2-environment-v1 COMMAND ARGUMENTS
This invokes Docker, using the
armswdev/sme2-learning-path:sme2-environment-v1
container
image, and mounts the current working directory (the code-examples/learning-paths/cross-platform/multiplying-matrices-with-sme2
)
inside the container to /work
, then sets /work
as the
working directory and runs COMMAND ARGUMENTS
in this environment.
For example, to run make
, you need to enter:
docker run --rm -v "$PWD:/work" -w /work armswdev/sme2-learning-path:sme2-environment-v1 make
Make sure you have the Microsoft Dev Containers extension installed.
Then select the Reopen in Container menu entry as Figure 1 shows.
It automatically finds and uses .devcontainer/devcontainer.json
:
Figure 1: Setting up the Docker Container.
All your commands now run within the container, so there is no need to prepend them with a Docker invocation, as VS Code handles all this seamlessly for you.
For the rest of this Learning Path, shell commands include the full Docker invocation so that users not using VS Code can copy the complete command line. However, if you are using VS Code, you only need to use the COMMAND ARGUMENTS
part.