aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/cmd/tools/fast/header.html
blob: 8f4ee5cab829b75105ffd8646e4e865f3dd1bb6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Is V still fast?</title>
<style>
*, body {
	font-family: Menlo, Monospace, 'Courier New';
}
table {
	width: 1800px;
}
table, td {
	border-collapse: collapse;
	border: 1px solid #dfdfdf;
}
td {
	padding: 5px;
	position: relative;
}
.diff {
	border-radius: 2.5px;
	color: #ffffff;
	padding: 0 5px 0 5px;
	position: absolute;
	right: 5px;
}
.minus {
	background-color: rgb(195, 74, 104);
}
.plus {
	background-color: #8BC34A;
}
.equal {
	background-color: rgb(113, 68, 172);
}
</style>
</head>
<body>
<h2>Is V still fast?</h2>

Monitoring compilation speed for each commit. <br><br>
Running on a free tier AWS t2.micro instance (1 vCPU). Typical desktop hardware is 2-3 times faster. <br><br>
Source code: <a target=blank href='https://github.com/vlang/v/blob/master/cmd/tools/fast/fast.v'>fast.v</a> <br><br>



<table>
	<tr>
		<td style='width:180px'>timestamp</td>
		<td style='width:85px'>commit</td>
		<td>commit message</td>
		<td style='width:120px'>v -o v.c</td>
		<td style='width:120px'>v -o v</td>
		<td style='width:130px'>v -native 1mil.v</td>
		<td style='width:120px'>v hello.v</td>
		<td style='width:85px'>v.c size</td>
		<td style='width:55px'>parse</td>
		<td style='width:55px'>check</td>
		<td style='width:55px'>cgen</td>
		<td style='width:55px'>scan</td>
		<td style='width:80px'>V lines</td>
		<td style='width:95px'>V lines/s</td>
	</tr>