2020-03-25 09:07:28 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright 2020 Google LLC
|
|
|
|
#
|
|
|
|
# Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://llvm.org/LICENSE.txt
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""Run benchmark of the various steps in the pre-merge tests.
|
|
|
|
|
|
|
|
This can be used to tune the build times.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import csv
|
|
|
|
import datetime
|
2020-03-25 13:34:22 +01:00
|
|
|
import multiprocessing
|
2020-03-25 09:07:28 +01:00
|
|
|
import os
|
2020-03-25 10:25:50 +01:00
|
|
|
import platform
|
2020-03-25 13:34:22 +01:00
|
|
|
import psutil
|
2020-03-25 09:07:28 +01:00
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
from typing import Optional, Dict, List
|
|
|
|
|
|
|
|
|
|
|
|
class Cmd:
|
|
|
|
"""Command to be executed as part of the benchmark.
|
|
|
|
|
|
|
|
If name is not set, the results will not be logged to the result file.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, cmd: str, title: str = None):
|
|
|
|
self.cmd = cmd # type: str
|
|
|
|
self.title = title # type: Optional[str]
|
|
|
|
self.execution_time = None # type: Optional[datetime.timedelta]
|
|
|
|
|
2020-03-25 10:25:50 +01:00
|
|
|
@property
|
2020-04-02 09:44:13 +02:00
|
|
|
def has_title(self) -> bool:
|
2020-03-25 13:34:22 +01:00
|
|
|
return self.title is not None
|
2020-03-25 10:25:50 +01:00
|
|
|
|
2020-04-02 09:44:13 +02:00
|
|
|
@property
|
|
|
|
def was_executed(self) -> bool:
|
|
|
|
return self.execution_time is not None
|
|
|
|
|
2020-03-25 10:25:50 +01:00
|
|
|
|
|
|
|
class Remove(Cmd):
|
|
|
|
"""Remove command, sensitive to OS."""
|
|
|
|
|
|
|
|
def __init__(self, path: str):
|
|
|
|
if platform.system() == 'Windows':
|
|
|
|
cmd = 'cmd /c rd /s/q {}'.format(path)
|
|
|
|
else:
|
|
|
|
cmd = 'rm -rf {}'.format(path)
|
|
|
|
super().__init__(cmd, "rm -rf {}".format(path))
|
|
|
|
|
2020-03-25 09:07:28 +01:00
|
|
|
|
|
|
|
# commands for the benchmark
|
|
|
|
COMMANDS = [
|
|
|
|
Cmd('git clone https://github.com/llvm/llvm-project .', 'git clone'),
|
|
|
|
Cmd('git checkout release/10.x', 'git checkout release'),
|
|
|
|
Cmd('git pull', 'git pull'),
|
2020-03-25 13:42:03 +01:00
|
|
|
Cmd('git checkout {commit}'),
|
2020-03-25 11:40:51 +01:00
|
|
|
# clean build, make sure ccache (or similar) is empty
|
2020-03-25 11:21:45 +01:00
|
|
|
Cmd('{pmt_root_path}/scripts/run_cmake.py', 'cmake 1st'),
|
2020-03-25 09:07:28 +01:00
|
|
|
Cmd('{pmt_root_path}/scripts/run_ninja.py all', 'ninja all 1st'),
|
2020-03-25 11:40:51 +01:00
|
|
|
Cmd('{pmt_root_path}/scripts/run_ninja.py check-all', 'ninja check-all 1st'),
|
2020-03-25 10:25:50 +01:00
|
|
|
Remove('build'),
|
2020-03-25 11:40:51 +01:00
|
|
|
# now rebuild from ccache (or similar)
|
2020-03-25 11:21:45 +01:00
|
|
|
Cmd('{pmt_root_path}/scripts/run_cmake.py', 'cmake 2nd'),
|
2020-03-25 09:07:28 +01:00
|
|
|
Cmd('{pmt_root_path}/scripts/run_ninja.py all', 'ninja all 2nd'),
|
|
|
|
Cmd('{pmt_root_path}/scripts/run_ninja.py check-all', 'ninja check-all 2nd'),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def run_benchmark(commit: str, name: str, result_file_path: str, workdir: str, pmt_root_path: str):
|
|
|
|
"""Tun the benchmark, write the results to a file."""
|
|
|
|
print('Usingn workdir {}'.format(workdir))
|
|
|
|
print('Using scripts from {}'.format(pmt_root_path))
|
|
|
|
cmd_parameters = {
|
|
|
|
'pmt_root_path': pmt_root_path,
|
|
|
|
'commit': commit,
|
|
|
|
}
|
2020-03-25 10:41:19 +01:00
|
|
|
if os.path.exists(workdir):
|
|
|
|
run_cmd(Remove(workdir), cmd_parameters, '.')
|
|
|
|
os.makedirs(workdir)
|
2020-04-02 09:44:13 +02:00
|
|
|
try:
|
|
|
|
for command in COMMANDS:
|
|
|
|
run_cmd(command, cmd_parameters, workdir)
|
|
|
|
finally:
|
|
|
|
write_results(COMMANDS, result_file_path, name)
|
2020-03-25 09:07:28 +01:00
|
|
|
|
|
|
|
|
2020-04-02 09:44:13 +02:00
|
|
|
def write_results(commands: List[Cmd], result_file_path: str, name: str):
|
2020-03-25 13:34:22 +01:00
|
|
|
fieldnames = ['name', 'cores', 'CPU', 'RAM', 'timestamp', 'OS']
|
2020-03-25 10:25:50 +01:00
|
|
|
fieldnames.extend(cmd.title for cmd in COMMANDS if cmd.has_title)
|
2020-03-25 09:07:28 +01:00
|
|
|
exists = os.path.exists(result_file_path)
|
|
|
|
with open(result_file_path, 'a') as csv_file:
|
|
|
|
writer = csv.DictWriter(csv_file, fieldnames=fieldnames, dialect=csv.excel)
|
|
|
|
if not exists:
|
|
|
|
writer.writeheader()
|
|
|
|
row = {
|
2020-03-25 13:34:22 +01:00
|
|
|
'name': name,
|
|
|
|
'cores': multiprocessing.cpu_count(),
|
2020-04-02 09:44:13 +02:00
|
|
|
'CPU': platform.processor(),
|
|
|
|
'RAM': psutil.virtual_memory().total,
|
|
|
|
'timestamp': datetime.datetime.now().timestamp(),
|
|
|
|
'OS': platform.platform()
|
2020-03-25 09:07:28 +01:00
|
|
|
}
|
2020-04-02 09:44:13 +02:00
|
|
|
for command in (cmd for cmd in commands if (cmd.has_title and cmd.was_executed)):
|
2020-03-25 09:07:28 +01:00
|
|
|
row[command.title] = command.execution_time.total_seconds()
|
|
|
|
writer.writerow(row)
|
|
|
|
print('Benchmark completed.')
|
|
|
|
|
|
|
|
|
|
|
|
def run_cmd(command: Cmd, cmd_parameters: Dict[str, str], workdir: str):
|
|
|
|
"""Run a single command."""
|
|
|
|
cmdline = command.cmd.format(**cmd_parameters)
|
|
|
|
print('Running: {}'.format(cmdline))
|
|
|
|
start_time = datetime.datetime.now()
|
|
|
|
proc = subprocess.Popen(cmdline, shell=True, cwd=workdir, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
stdout, stderr = proc.communicate()
|
|
|
|
if proc.poll() != 0:
|
|
|
|
print(stdout)
|
|
|
|
print(stderr)
|
|
|
|
print('Benchmark failed.')
|
|
|
|
sys.exit(1)
|
|
|
|
end_time = datetime.datetime.now()
|
|
|
|
command.execution_time = end_time - start_time
|
|
|
|
print(' Execution time was: {}'.format(command.execution_time))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
pmt_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description='Benchmark for LLVM pre-merge tests.')
|
2020-12-09 17:23:01 +01:00
|
|
|
parser.add_argument('--commit', type=str, default='main', help="LLVM commit to run this benchmark on.")
|
2020-03-25 09:07:28 +01:00
|
|
|
parser.add_argument('--result-file', type=str, default='pmt-benchmark.csv',
|
|
|
|
help="path to CSV file where to store the benchmark results")
|
|
|
|
parser.add_argument('--workdir', type=str, default=os.path.join(os.getcwd(), 'benchmark'),
|
|
|
|
help='Folder to store the LLVM checkout.')
|
2020-03-25 13:34:22 +01:00
|
|
|
parser.add_argument('--name', type=str, default=None, help="name for the benchmark")
|
2020-03-25 09:07:28 +01:00
|
|
|
args = parser.parse_args()
|
|
|
|
run_benchmark(args.commit, args.name, args.result_file, args.workdir, pmt_root)
|