Skip to content

Commit d11f12b

Browse files
committed
Increment uprof version
1 parent 04e71f4 commit d11f12b

3 files changed

Lines changed: 27 additions & 6 deletions

File tree

script/README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MLCommons Automation Scripts
22

3-
*Last updated: 2026-02-26 03:04:40*
3+
*Last updated: 2026-03-05 03:08:19*
44

55
This directory contains automation scripts for MLPerf benchmarks, AI/ML workflows, and development operations.
66

@@ -17,6 +17,7 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
1717
- [Detection or installation of tools and artifacts](#detection-or-installation-of-tools-and-artifacts)
1818
- [DevOps automation](#devops-automation)
1919
- [Docker automation](#docker-automation)
20+
- [HPC Application](#hpc-application)
2021
- [MLCommons automation](#mlcommons-automation)
2122
- [MLCommons interface](#mlcommons-interface)
2223
- [MLCommons script templates](#mlcommons-script-templates)
@@ -345,7 +346,7 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
345346
- Tags: `get`, `oneapi`, `compiler`, `get-oneapi`
346347
- **[get-profiler-uprof](get-profiler-uprof/)**
347348
- Detect or install AMD uprof
348-
- Tags: `get-uprof`, `get`, `uprof`, `uprof-profiler`
349+
- Tags: `get-uprof`, `get`, `uprof`, `profiler`, `uprof-profiler`
349350
- **[install-diffusers-from-src](install-diffusers-from-src/)**
350351
- Build diffusers from sources
351352
- Tags: `install`, `get`, `src`, `from.src`, `diffusers`, `src-diffusers`
@@ -415,6 +416,9 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
415416
- **[get-bazel](get-bazel/)**
416417
- get-bazel
417418
- Tags: `get`, `bazel`, `get-bazel`
419+
- **[get-blas](get-blas/)**
420+
- get-blas
421+
- Tags: `get`, `lib`, `blas`
418422
- **[get-blis](get-blis/)**
419423
- get-blis
420424
- Tags: `get`, `lib`, `blis`
@@ -605,6 +609,12 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
605609
- run-docker-container
606610
- Tags: `run`, `docker`, `container`
607611

612+
## HPC Application
613+
614+
- **[app-cp2k](app-cp2k/)**
615+
- app-cp2k
616+
- Tags: `app`, `cp2k`
617+
608618
## MLCommons automation
609619

610620
- **[create-custom-cache-entry](create-custom-cache-entry/)**
@@ -865,6 +875,12 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
865875
- **[detect-os](detect-os/)**
866876
- detect-os
867877
- Tags: `detect-os`, `detect`, `os`, `info`
878+
- **[get-mlperf-multi-node-system-info](get-mlperf-multi-node-system-info/)**
879+
- get-mlperf-multi-node-system-info
880+
- Tags: `get-mlperf-multi-node-system-info`
881+
- **[get-mlperf-single-node-system-info](get-mlperf-single-node-system-info/)**
882+
- get-mlperf-single-node-system-info
883+
- Tags: `get`, `mlperf`, `single-node`, `system-info`
868884
- **[get-platform-details](get-platform-details/)**
869885
- get-platform-details
870886
- Tags: `get`, `platform`, `details`, `platform-details`
@@ -1083,8 +1099,8 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
10831099

10841100
## Statistics
10851101

1086-
- **Total Scripts**: 318
1087-
- **Categories**: 29
1102+
- **Total Scripts**: 322
1103+
- **Categories**: 30
10881104

10891105
## Usage
10901106

script/get-profiler-uprof/meta.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ tags:
4848
- get-uprof
4949
- get
5050
- uprof
51+
- profiler
5152
- uprof-profiler
5253
tests:
5354
run_inputs:
@@ -57,7 +58,7 @@ uid: 1530bfcddc3f4fa1
5758
variations:
5859
download-and-install:
5960
# currently not supported as EULA needs to be approved manually
60-
default_version: 5.1
61+
default_version: 5.2
6162
env:
6263
MLC_UPROF_DOWNLOAD: true
6364
group: install-type
@@ -73,6 +74,11 @@ variations:
7374
MLC_UPROF_DIR_PATH: '#'
7475

7576
versions:
77+
5.2:
78+
env:
79+
MLC_UPROF_NEEDS_TAR: true
80+
MLC_UPROF_URL: https://download.amd.com/developer/eula/uprof/uprof-5-2/AMDuProf_Linux_x64_5.2.606.tar.bz2
81+
MLC_VERSION: 5.2.606
7682
5.1:
7783
env:
7884
MLC_UPROF_NEEDS_TAR: true

script/get-profiler-uprof/run.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/bash
22
uprof_bin=${MLC_UPROF_BIN_WITH_PATH}
33
echo "${uprof_bin} --version"
4-
54
${uprof_bin} --version > tmp-ver.out
65
test $? -eq 0 || exit $?

0 commit comments

Comments
 (0)