Skip to content

Commit eb041b1

Browse files
Merge pull request #3037 from ArmDeveloperEcosystem/main
Production update
2 parents c628a2a + 541819d commit eb041b1

21 files changed

Lines changed: 245 additions & 166 deletions

File tree

.wordlist.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5953,4 +5953,8 @@ uarch
59535953
umount
59545954
vtable
59555955
xC
5956-
Performix
5956+
Performix
5957+
ArmPerformix
5958+
callees
5959+
parallelizable
5960+
performix

content/install-guides/asct.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,18 @@ minutes_to_complete: 15
1515
test_maintenance: false
1616

1717
# No official documentation
18-
official_docs: https://learn.arm.com/install-guides/asct/
18+
official_docs: https://developer.arm.com/documentation/111147/latest
1919

2020
author:
2121
- Jason Andrews
2222
- Prince Agyeman
2323

2424
### PAGE SETUP
2525
weight: 1 # Defines page ordering. Must be 1 for first (or only) page.
26-
tool_install: false # Set to true to be listed in main selection page, else false
26+
tool_install: true # Set to true to be listed in main selection page, else false
2727
multi_install: false # Set to true if first page of multi-page article, else false
2828
multitool_install_part: false # Set to true if a sub-page of a multi-page article, else false
2929
layout: installtoolsall # DO NOT MODIFY. Always true for tool install articles
30-
31-
build:
32-
list: false
33-
render: true
3430
---
3531

3632
The Arm System Characterization Tool (ASCT) is a command-line utility for running low-level benchmarks, diagnostic scripts, and system tests to analyze and debug performance on Arm-based platforms. ASCT provides a standardized environment for evaluating key hardware characteristics and is especially suited for platform bring-up, system tuning, and architectural comparison tasks.
@@ -86,10 +82,10 @@ ASCT is distributed as a Python package and requires Python 3.10 or later.
8682

8783
Download the latest ASCT release from the [artifacts.tools.arm.com](https://artifacts.tools.arm.com/asct/dist/) page.
8884

89-
For example, to download version 0.4.2:
85+
For example, to download version 0.5.1:
9086

9187
```bash
92-
wget https://artifacts.tools.arm.com/asct/dist/0.4.2/asct-0.4.2+3b955c2.tar.gz
88+
wget https://artifacts.tools.arm.com/asct/dist/0.5.1/asct-0.5.1+11d418d-release.tar.gz
9389
```
9490

9591
### How do I install ASCT using uv?
@@ -100,10 +96,23 @@ The recommended method uses [uv](https://github.com/astral-sh/uv), a fast Python
10096
curl -LsSf https://astral.sh/uv/install.sh | sh
10197
```
10298

99+
Extract the release archive
100+
101+
```bash
102+
tar xzf asct-0.5.1+11d418d-release.tar.gz
103+
```
104+
105+
Create the required directories
106+
107+
```bash
108+
sudo mkdir -p /opt/uv/tools /usr/local/bin
109+
```
110+
103111
Install ASCT system-wide using:
104112

105113
```bash
106-
UV_TOOL_BIN_DIR=/usr/local/bin sudo -E $(which uv) tool install asct-0.4.2+3b955c2.tar.gz
114+
cd asct-0.5.1+11d418d
115+
sudo UV_TOOL_DIR=/opt/uv/tools UV_TOOL_BIN_DIR=/usr/local/bin $(which uv) tool install ./asct-0.5.1+11d418d.tar.gz
107116
```
108117

109118
This installs ASCT to `/usr/local/bin` making it available system-wide. Installing to `/usr/local/bin` instead of the default `~/.local/bin` allows you to run ASCT with `sudo`, which is required for some benchmarks to access system resources and configure huge pages.
@@ -119,7 +128,7 @@ asct version
119128
The output is similar to:
120129

121130
```output
122-
ASCT 0.4.2+3b955c2
131+
ASCT 0.5.1+11d418d
123132
```
124133

125134
Display the help information:

content/install-guides/kiro-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ kiro-cli version
106106
The output shows the version:
107107

108108
```output
109-
kiro-cli 1.21.0
109+
kiro-cli 1.28.1
110110
```
111111

112112
## How can I configure my AWS account to get the most from Kiro CLI?

0 commit comments

Comments
 (0)