Skip to content
Open
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
2 changes: 1 addition & 1 deletion mlir/utils/jenkins/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ RUN wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.34-linux-glibc2

# python setup for tuna
# --ignore-installed because of problems upgrading PyYAML. See also -U.
ADD "https://raw.githubusercontent.com/ROCm/MITuna/pf-tuna-rocmlir-3/requirements.txt" tuna-requirements.txt
ADD "https://raw.githubusercontent.com/ROCm/MITuna/merge-from-develop/requirements.txt" tuna-requirements.txt
RUN python3 -m venv /tuna-venv && . /tuna-venv/bin/activate && \
python3 -m pip install -r tuna-requirements.txt --ignore-installed && \
python3 -m pip install -r llvm-requirements.txt --ignore-installed && \
Expand Down
4 changes: 2 additions & 2 deletions mlir/utils/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ pipeline {
buildProject('ci-performance-scripts', '')
// How to check out into specific directory, according to stackoverflow.
dir('MITuna') {
git branch: "pf-tuna-rocmlir-3", poll: false, url: 'https://github.com/ROCm/MITuna.git'
git branch: "merge-from-develop", poll: false, url: 'https://github.com/ROCm/MITuna.git'
}
dir('build') {
timeout(time: 60, activity: true, unit: 'MINUTES') {
Expand Down Expand Up @@ -1009,7 +1009,7 @@ pipeline {
stage("Tune rocMLIR") {
buildProject('check-rocmlir-build-only ci-performance-scripts', '')
dir('MITuna') {
git branch: "pf-tuna-rocmlir-3", poll: false, url: 'https://github.com/ROCm/MITuna.git'
git branch: "merge-from-develop", poll: false, url: 'https://github.com/ROCm/MITuna.git'
}
dir('build') {
def tuningLog = "tune_rocmlir_${CHIP}.log"
Expand Down