You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/cross-platform/multiplying-matrices-with-sme2/1-get-started.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ It includes:
68
68
-`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.
69
69
-`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.
70
70
-`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.
72
72
73
73
{{% notice Note %}}
74
74
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``
88
88
89
89
### Install Clang
90
90
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:
92
92
93
93
{{< tabpane code=true >}}
94
94
@@ -102,7 +102,7 @@ Install Clang using the instructions below, selecting either macOS or Linux/Ubun
102
102
103
103
{{< /tabpane >}}
104
104
105
-
You are now all set to start hacking with SME2!
105
+
You are now all set to start hacking with SME2.
106
106
107
107
## Set up a system using SME2 emulation with Docker
108
108
@@ -115,17 +115,17 @@ for emulating code with SME2 instructions. You can run the provided image or bui
115
115
### Install and verify Docker
116
116
117
117
{{% 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`.
119
119
{{% /notice %}}
120
120
121
-
Start by checking that ``docker`` is installed on your machine:
121
+
To begin, start by checking that ``docker`` is installed on your machine:
122
122
123
123
```BASH { output_lines="2" }
124
124
docker --version
125
125
Docker version 27.3.1, build ce12230
126
126
```
127
127
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.
129
129
130
130
{{% notice Note %}}
131
131
You might need to log out and back in again or restart your machine for the changes to take
- 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.
181
180
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
0 commit comments