v/cmd/tools/fast/fast.v

129 lines
3.7 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-11-07 18:38:27 +01:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2020-04-26 08:32:05 +02:00
import os
import time
2019-11-07 18:38:27 +01:00
fn main() {
exe := os.executable()
2020-03-07 22:26:26 +01:00
dir := os.dir(exe)
vdir := os.dir(os.dir(os.dir(dir)))
if !os.exists('$vdir/v') && !os.is_dir('$vdir/vlib') {
2020-02-09 10:08:04 +01:00
println('fast.html generator needs to be located in `v/cmd/tools/fast`')
2019-12-16 20:22:04 +01:00
}
2019-11-07 18:38:27 +01:00
println('fast.html generator\n')
// Fetch the last commit's hash
2019-11-07 22:07:53 +01:00
println('Fetching updates...')
ret := os.system('$vdir/v up')
2019-12-16 20:22:04 +01:00
if ret != 0 {
println('failed to update V')
2019-12-16 20:22:04 +01:00
return
}
2019-11-07 18:38:27 +01:00
mut commit_hash := exec('git rev-parse HEAD')
2020-07-10 16:51:16 +02:00
commit_hash = commit_hash[..8]
if os.exists('last_commit.txt') {
last_commit := os.read_file('last_commit.txt') ?
2020-07-10 16:51:16 +02:00
if last_commit.trim_space() == commit_hash.trim_space() {
println('No new commits to benchmark. Commit $commit_hash has already been processed.')
return
}
commit_hash = last_commit.trim_space()
}
if !os.exists('table.html') {
os.create('table.html') ?
2019-12-16 20:22:04 +01:00
}
mut table := os.read_file('table.html') ?
2020-07-10 16:51:16 +02:00
/*
2019-11-07 18:38:27 +01:00
// Do nothing if it's already been processed.
if table.contains(commit_hash) {
println('Commit $commit_hash has already been processed')
return
2019-12-16 20:22:04 +01:00
}
2020-07-10 16:51:16 +02:00
*/
last_commits := exec('git log --pretty=format:"%h" -n 50').split('\n')
2020-07-10 16:51:16 +02:00
// Fetch all unprocessed commits (commits after the last processed commit)
mut commits := []string{}
println('!last_commit="$commit_hash"')
2020-07-10 16:51:16 +02:00
for i, c in last_commits {
if c == commit_hash {
commits = last_commits[..i].reverse()
break
}
}
println(last_commits)
println('Commits to benchmark:')
println(commits)
for i, commit in commits {
message := exec('git log --pretty=format:"%s" -n1 $commit')
println('\n${i + 1}/$commits.len Benchmarking commit $commit "$message"')
// Build an optimized V
2020-08-18 01:11:58 +02:00
println('Checking out ${commit}...')
exec('git checkout $commit')
2020-07-10 16:51:16 +02:00
println(' Building vprod...')
exec('v -o $vdir/vprod -prod $vdir/cmd/v')
2020-07-10 16:51:16 +02:00
diff1 := measure('$vdir/vprod -cc clang -o v.c $vdir/cmd/v', 'v.c')
diff2 := measure('$vdir/vprod -cc clang -o v2 $vdir/cmd/v', 'v2')
diff3 := measure('$vdir/vprod -x64 $vdir/cmd/tools/1mil.v', 'x64 1mil')
diff4 := measure('$vdir/vprod -cc clang $vdir/examples/hello_world.v', 'hello.v')
// println('Building V took ${diff}ms')
2020-07-10 17:14:14 +02:00
commit_date := exec('git log -n1 --pretty="format:%at" $commit')
2020-07-10 16:51:16 +02:00
date := time.unix(commit_date.int())
mut out := os.create('table.html') ?
2020-07-10 16:51:16 +02:00
// Place the new row on top
table = '<tr>
<td>$date.format()</td>
<td><a target=_blank href="https://github.com/vlang/v/commit/$commit">$commit</a></td>
2020-07-10 16:51:16 +02:00
<td>$message</td>
<td>${diff1}ms</td>
<td>${diff2}ms</td>
<td>${diff3}ms</td>
<td>${diff4}ms</td>
</tr>\n' +
table.trim_space()
2020-07-10 16:51:16 +02:00
out.writeln(table)
out.close()
// Regenerate index.html
header := os.read_file('header.html') ?
footer := os.read_file('footer.html') ?
mut res := os.create('index.html') ?
2020-07-10 16:51:16 +02:00
res.writeln(header)
res.writeln(table)
res.writeln(footer)
res.close()
}
2020-08-18 01:11:58 +02:00
exec('git checkout master')
os.write_file('last_commit.txt', commits[commits.len - 1]) ?
}
2019-11-07 18:38:27 +01:00
fn exec(s string) string {
e := os.exec(s) or {
panic(err)
}
return e.output.trim_right('\r\n')
}
2019-11-07 19:47:31 +01:00
// returns milliseconds
fn measure(cmd string, description string) int {
2020-07-10 16:51:16 +02:00
println(' Measuring $description')
println(' Warming up...')
for _ in 0 .. 3 {
2019-11-07 19:47:31 +01:00
exec(cmd)
2019-12-16 20:22:04 +01:00
}
2020-07-10 16:51:16 +02:00
println(' Building...')
mut runs := []int{}
for r in 0 .. 5 {
println(' Sample ${r+1}/5')
sw := time.new_stopwatch({})
exec(cmd)
runs << int(sw.elapsed().milliseconds())
}
// discard lowest and highest time
runs.sort()
runs = runs[1..4]
mut sum := 0
for run in runs {
sum += run
}
return int(sum / 3)
}