Skip to content

Commit 11296f4

Browse files
Added internal links to sections
1 parent ef38e39 commit 11296f4

File tree

1 file changed

+9
-11
lines changed
  • content/learning-paths/cross-platform/multiplying-matrices-with-sme2

1 file changed

+9
-11
lines changed

content/learning-paths/cross-platform/multiplying-matrices-with-sme2/1-get-started.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ It includes:
6868
- `build-my-container.sh`, a script that automates building the Docker image from the `sme2-environment.docker` file. It runs the docker build command with the correct arguments so you don’t have to remember them.
6969
- `sme2-environment.docker`, a Docker file that defines the steps to build the SME2 container image. It installs all the necessary dependencies, including the SME2-compatible compiler and Arm FVP emulator.
7070
- `build-all-containers.sh`, a script to build multi-architecture images.
71-
- `.devcontainer/devcontainer.json`` for VS Code container support.
71+
- `.devcontainer/devcontainer.json` for VS Code container support.
7272

7373
{{% notice Note %}}
7474
From this point, all instructions assume that your current directory is
@@ -88,7 +88,7 @@ You can check your compiler version using the command:``clang --version``
8888

8989
### Install Clang
9090

91-
Install Clang using the instructions below, selecting either macOS or Linux/Ubuntu, as appropriate:
91+
Install Clang using the instructions below, selecting either macOS or Linux/Ubuntu, depending on your setup:
9292

9393
{{< tabpane code=true >}}
9494

@@ -102,7 +102,7 @@ Install Clang using the instructions below, selecting either macOS or Linux/Ubun
102102

103103
{{< /tabpane >}}
104104

105-
You are now all set to start hacking with SME2!
105+
You are now all set to start hacking with SME2.
106106

107107
## Set up a system using SME2 emulation with Docker
108108

@@ -115,17 +115,17 @@ for emulating code with SME2 instructions. You can run the provided image or bui
115115
### Install and verify Docker
116116

117117
{{% notice Note %}}
118-
Docker is optional, but if you don’t use it, you must manually install the compiler and FVP, and ensure they’re in your path.
118+
Docker is optional, but if you don’t use it, you must manually install the compiler and FVP, and ensure they’re in your `PATH`.
119119
{{% /notice %}}
120120

121-
Start by checking that ``docker`` is installed on your machine:
121+
To begin, start by checking that ``docker`` is installed on your machine:
122122

123123
```BASH { output_lines="2" }
124124
docker --version
125125
Docker version 27.3.1, build ce12230
126126
```
127127

128-
If the above command fails with a message similar to "``docker: command not found``" then follow the steps from the [Docker Install Guide](https://learn.arm.com/install-guides/docker/).
128+
If the above command fails with a message similar to "``docker: command not found``", then follow the steps from the [Docker Install Guide](https://learn.arm.com/install-guides/docker/) to install it.
129129

130130
{{% notice Note %}}
131131
You might need to log out and back in again or restart your machine for the changes to take
@@ -176,12 +176,10 @@ https://docs.docker.com/get-started/
176176
```
177177

178178
You can use Docker in the following ways:
179-
- Directly from the command line. For example, when you are working from a
180-
terminal on your local machine.
179+
- [Directly from the command line](#run-commands-from-a-terminal-using-docker). For example, when you are working from a terminal on your local machine.
181180

182-
- Within a containerized environment. Configure VS Code to execute all the
183-
commands inside a Docker container, allowing you to work seamlessly within the
184-
Docker environment.
181+
- [Within a containerized environment](#use-an-interactive-docker-shell). Configure VS Code to execute all the commands inside a Docker container, allowing you to work seamlessly within the
182+
Docker environment.
185183

186184
### Run commands from a terminal using Docker
187185

0 commit comments

Comments
 (0)