Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions script/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MLCommons Automation Scripts

*Last updated: 2026-01-23 04:05:12*
*Last updated: 2026-02-04 18:34:12*

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

Expand Down Expand Up @@ -970,9 +970,18 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
- **[get-dataset-mlperf-inference-dlrmv3-synthetic-streaming](get-dataset-mlperf-inference-dlrmv3-synthetic-streaming/)**
- get-dataset-mlperf-inference-dlrmv3-synthetic-streaming
- Tags: `get`, `dataset`, `mlperf`, `inference`, `dlrmv3`, `synthetic-streaming`, `get-dataset-mlperf-inference-dlrmv3-synthetic-streaming`
- **[get-dataset-mlperf-inference-gpt-oss](get-dataset-mlperf-inference-gpt-oss/)**
- get-dataset-mlperf-inference-gpt-oss
- Tags: `get-dataset-mlperf-inference-gpt-oss`
- **[get-dataset-mlperf-inference-llama3](get-dataset-mlperf-inference-llama3/)**
- get-dataset-mlperf-inference-llama3
- Tags: `get`, `dataset`, `mlperf`, `llama3`, `inference`
- **[get-dataset-mlperf-inference-shopify-catalogue](get-dataset-mlperf-inference-shopify-catalogue/)**
- get-dataset-mlperf-inference-shopify-catalogue
- Tags: `get-dataset-mlperf-inference-shopify-catalogue`
- **[get-dataset-mlperf-inference-text-to-video](get-dataset-mlperf-inference-text-to-video/)**
- get-dataset-mlperf-inference-text-to-video
- Tags: `get-dataset-mlperf-inference-text-to-video`
- **[get-dataset-mlperf-inference-yolo-coco2017-filtered-dataset](get-dataset-mlperf-inference-yolo-coco2017-filtered-dataset/)**
- get-dataset-mlperf-inference-yolo-coco2017-filtered-dataset
- Tags: `get`, `dataset`, `mlperf-inference`, `yolo-coco2017-filtered`, `get-dataset-mlperf-inference-yolo-coco2017-filtered-dataset`
Expand Down Expand Up @@ -1012,6 +1021,15 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow
- **[get-ml-model-pointpainting](get-ml-model-pointpainting/)** (alias: `get-ml-model-pointpillars`)
- get-ml-model-pointpainting
- Tags: `get`, `ml-model`, `ml`, `model`, `pointpainting`
- **[get-ml-model-qwen3-vlm](get-ml-model-qwen3-vlm/)**
- get-ml-model-qwen3-vlm
- Tags: `get-ml-model-qwen3-vl`
- **[get-ml-model-wan2](get-ml-model-wan2/)**
- get-ml-model-wan2
- Tags: `get-ml-model-wan2`
- **[get-ml-model-yolov11](get-ml-model-yolov11/)**
- get-ml-model-yolov11
- Tags: `get-ml-model-yolov11`
- **[get-mlperf-automotive-utils](get-mlperf-automotive-utils/)**
- get-mlperf-automotive-utils
- Tags: `get`, `mlperf`, `automotive`, `util`, `utils`, `functions`
Expand Down Expand Up @@ -1053,7 +1071,7 @@ This directory contains automation scripts for MLPerf benchmarks, AI/ML workflow

## Statistics

- **Total Scripts**: 308
- **Total Scripts**: 314
- **Categories**: 29

## Usage
Expand Down
8 changes: 8 additions & 0 deletions script/install-gcc-src/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,19 @@ deps:
- MLC_GIT_CHECKOUT_SHA
_tag.:
- MLC_GIT_CHECKOUT_TAG
- tags: pull,git,repo
env:
MLC_GIT_CHECKOUT_PATH: '<<<MLC_GCC_SRC_REPO_PATH>>>'
enable_if_env:
MLC_GCC_REPO_PULL_CHANGES:
- 'yes'

input_mapping:
targets: MLC_GCC_TARGET
host: MLC_GCC_HOST
build: MLC_GCC_BUILD
extra: MLC_GCC_EXTRA_CONFIGURE_STRING
pull_changes: MLC_GCC_REPO_PULL_CHANGES


new_env_keys:
Expand Down
9 changes: 9 additions & 0 deletions script/install-llvm-src/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,21 @@ deps:
- MLC_GIT_CHECKOUT_TAG
_tag.llvmorg-:
- MLC_VERSION
- tags: pull,git,repo
env:
MLC_GIT_CHECKOUT_PATH: '<<<MLC_LLVM_SRC_REPO_PATH>>>'
enable_if_env:
MLC_LLVM_REPO_PULL_CHANGES:
- 'yes'

input_mapping:
targets: MLC_LLVM_TARGETS_TO_BUILD
target_triple: MLC_LLVM_TARGET_TRIPLE
extra_options: MLC_LLVM_EXTRA_CMAKE_OPTIONS
per_target_runtime_dir: MLC_LLVM_PER_TARGET_RUNTIME_DIR
clean: MLC_CLEAN
pull_changes: MLC_LLVM_REPO_PULL_CHANGES

env:
MLC_GIT_URL: https://github.com/llvm/llvm-project
name: Build LLVM compiler from sources (can take >30 min)
Expand Down
Loading