Skip to content

Commit afe62ce

Browse files
Merge pull request #1607 from Arnaud-de-Grandmaison-ARM/sme2-code-samples
[sme2] Update the gitlab link for the code samples.
2 parents 77fc57b + f260c05 commit afe62ce

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

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

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,18 @@ For more examples and ideas, visit:
104104
## Environment
105105

106106
Now, using Git, clone the environment for experimenting with SME2 to a directory
107-
named ``SME2.git``:
107+
named ``code-examples.git`` and change your current directory to
108+
``code-examples.git/learning-paths/cross-platform/sme2`` :
108109

109110
```BASH
110-
git clone https://gitlab.arm.com/learning-code-examples/TODO_SOME_PATH SME2-learning-path.git
111+
git clone https://gitlab.arm.com/learning-code-examples/code-examples code-examples.git
112+
cd code-examples.git/learning-paths/cross-platform/sme2
111113
```
112114

113-
This list of content in the repository should look like this :
115+
This list of content in this directory should look like this :
114116

115117
```TXT
116-
SME2-learning-path.git/
118+
code-examples.git/learning-paths/cross-platform/sme2/
117119
├── .clang-format
118120
├── .devcontainer/
119121
│ └── devcontainer.json
@@ -153,14 +155,9 @@ It contains:
153155
- A script called ``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.
154156
- A configuration script for VS Code to be able to use the container from the IDE called ``.devcontainer/devcontainer.json``.
155157

156-
The next step is to change directory to your checkout:
157-
158-
```BASH
159-
cd SME2-learning-path.git
160-
```
161158
{{% notice Note %}}
162159
From this point in the Learning Path, all instructions assume that your current
163-
directory is ``SME2-learning-path.git``.{{% /notice %}}
160+
directory is ``code-examples.git/learning-paths/cross-platform/sme2``.{{% /notice %}}
164161

165162

166163
## Using the environment
@@ -183,7 +180,7 @@ docker run --rm -v "$PWD:/work" -w /work armswdev/sme2-learning-path:sme2-enviro
183180

184181
This invokes Docker, using the
185182
``armswdev/sme2-learning-path:sme2-environment-v1``container
186-
image, and mounts the current working directory (the ``SME2-learning-path.git``)
183+
image, and mounts the current working directory (the ``code-examples.git/learning-paths/cross-platform/sme2``)
187184
inside the container to ``/work``, then sets ``/work`` as the
188185
working directory and runs ``COMMAND ARGUMENTS`` in this environment.
189186

@@ -209,4 +206,4 @@ All your commands now run within the container, so there is no need to prepend t
209206

210207
{{% notice Note %}}
211208
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.
212-
{{% /notice %}}
209+
{{% /notice %}}

0 commit comments

Comments
 (0)