1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools/fast: run for each commit

This commit is contained in:
Alexander Medvednikov 2020-07-10 16:51:16 +02:00
parent 7488dd829d
commit 0cfa90828c

View File

@ -21,51 +21,79 @@ fn main() {
return return
} }
mut commit_hash := exec('git rev-parse HEAD') mut commit_hash := exec('git rev-parse HEAD')
commit_hash = commit_hash[..7] commit_hash = commit_hash[..8]
if !os.exists('table.html') { if os.exists('last_commit.txt') {
os.create('table.html') or { panic(err) } last_commit := os.read_file('last_commit.txt')?
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()
} }
mut table := os.read_file('table.html') or { panic(err) }
if !os.exists('table.html') {
os.create('table.html')?
}
mut table := os.read_file('table.html')?
/*
// Do nothing if it's already been processed. // Do nothing if it's already been processed.
if table.contains(commit_hash) { if table.contains(commit_hash) {
println('Commit $commit_hash has already been processed') println('Commit $commit_hash has already been processed')
return return
} }
// Build an optimized V */
println('Building vprod...') last_commits := exec('git log --pretty=format:"%h" -n 20').split('\n')//.reverse()
exec('v -o $vdir/vprod -prod $vdir/cmd/v') // Fetch all unprocessed commits (commits after the last processed commit)
println('Measuring...') mut commits := []string{}
diff1 := measure('$vdir/vprod -cc clang -o v.c $vdir/cmd/v') println('last_commit="$commit_hash"')
diff2 := measure('$vdir/vprod -cc clang -o v2 $vdir/cmd/v') for i, c in last_commits {
diff3 := measure('$vdir/vprod -x64 $vdir/cmd/tools/1mil.v') if c == commit_hash {
diff4 := measure('$vdir/vprod -cc clang $vdir/examples/hello_world.v') commits = last_commits[..i].reverse()
//println('Building V took ${diff}ms') break
commit_date := exec('git log -n1 --pretty="format:%at"') }
message := exec('git log -n1 --pretty="format:%s"') }
date := time.unix(commit_date.int()) println(last_commits)
mut out := os.create('table.html') or { panic(err) } println('Commits to benchmark:')
// Place the new row on top println(commits)
table = for i, commit in commits {
'<tr> message := exec('git log --pretty=format:"%s" -n1 $commit')
<td>${date.format()}</td> println('\n${i + 1}/$commits.len Benchmarking commit $commit "$message"')
<td><a target=_blank href="https://github.com/vlang/v/commit/$commit_hash">$commit_hash</a></td> // Build an optimized V
<td>$message</td> println(' Building vprod...')
<td>${diff1}ms</td> //exec('v -o $vdir/vprod -prod $vdir/cmd/v')
<td>${diff2}ms</td> exec('v -o $vdir/vprod $vdir/cmd/v')
<td>${diff3}ms</td> diff1 := measure('$vdir/vprod -cc clang -o v.c $vdir/cmd/v', 'v.c')
<td>${diff4}ms</td> diff2 := measure('$vdir/vprod -cc clang -o v2 $vdir/cmd/v', 'v2')
</tr>\n' + diff3 := measure('$vdir/vprod -x64 $vdir/cmd/tools/1mil.v', 'x64 1mil')
table.trim_space() diff4 := measure('$vdir/vprod -cc clang $vdir/examples/hello_world.v', 'hello.v')
out.writeln(table) //println('Building V took ${diff}ms')
out.close() commit_date := exec('git log -n1 --pretty="format:%at"')
// Regenerate index.html date := time.unix(commit_date.int())
header := os.read_file('header.html') or { panic(err) } mut out := os.create('table.html')?
footer := os.read_file('footer.html') or { panic(err) } // Place the new row on top
mut res := os.create('index.html') or { panic(err) } table =
res.writeln(header) '<tr>
res.writeln(table) <td>${date.format()}</td>
res.writeln(footer) <td><a target=_blank href="https://github.com/vlang/v/commit/$commit_hash">$commit_hash</a></td>
res.close() <td>$message</td>
<td>${diff1}ms</td>
<td>${diff2}ms</td>
<td>${diff3}ms</td>
<td>${diff4}ms</td>
</tr>\n' +
table.trim_space()
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')?
res.writeln(header)
res.writeln(table)
res.writeln(footer)
res.close()
}
os.write_file('last_commit.txt', commits[commits.len-1])?
} }
fn exec(s string) string { fn exec(s string) string {
@ -74,12 +102,13 @@ fn exec(s string) string {
} }
// returns milliseconds // returns milliseconds
fn measure(cmd string) int { fn measure(cmd, description string) int {
println('Warming up...') println(' Measuring $description')
println(' Warming up...')
for _ in 0..3 { for _ in 0..3 {
exec(cmd) exec(cmd)
} }
println('Building...') println(' Building...')
sw := time.new_stopwatch({}) sw := time.new_stopwatch({})
exec(cmd) exec(cmd)
return int(sw.elapsed().milliseconds()) return int(sw.elapsed().milliseconds())