2019-11-20 15:59:37 +01:00
|
|
|
<!DOCTYPE html>
|
2019-11-07 18:38:27 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2019-11-20 15:59:37 +01:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-11-07 19:59:34 +01:00
|
|
|
<title>Is V still fast?</title>
|
2019-11-07 18:38:27 +01:00
|
|
|
<style>
|
|
|
|
*, body {
|
2019-11-20 15:59:37 +01:00
|
|
|
font-family: Menlo, Monospace, 'Courier New';
|
2019-11-07 18:38:27 +01:00
|
|
|
}
|
2021-02-07 05:11:48 +01:00
|
|
|
table {
|
2021-04-02 19:53:01 +02:00
|
|
|
width: 1800px;
|
2021-02-07 05:11:48 +01:00
|
|
|
}
|
2019-11-07 18:38:27 +01:00
|
|
|
table, td {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border: 1px solid #dfdfdf;
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
padding: 5px;
|
2019-11-20 15:59:37 +01:00
|
|
|
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);
|
2019-11-07 18:38:27 +01:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h2>Is V still fast?</h2>
|
|
|
|
|
2019-11-08 05:49:56 +01:00
|
|
|
Monitoring compilation speed for each commit. <br><br>
|
2020-12-23 10:53:34 +01:00
|
|
|
Running on a free tier AWS t2.micro instance (1 vCPU). Typical desktop hardware is 2-3 times faster. <br><br>
|
2020-02-09 10:08:04 +01:00
|
|
|
Source code: <a target=blank href='https://github.com/vlang/v/blob/master/cmd/tools/fast/fast.v'>fast.v</a> <br><br>
|
2019-11-07 18:38:27 +01:00
|
|
|
|
2020-07-10 11:53:09 +02:00
|
|
|
|
|
|
|
|
2019-11-07 18:38:27 +01:00
|
|
|
<table>
|
|
|
|
<tr>
|
2021-04-02 19:53:01 +02:00
|
|
|
<td style='width:180px'>timestamp</td>
|
|
|
|
<td style='width:85px'>commit</td>
|
|
|
|
<td>commit message</td>
|
2019-11-07 19:59:34 +01:00
|
|
|
<td style='width:120px'>v -o v.c</td>
|
|
|
|
<td style='width:120px'>v -o v</td>
|
2021-04-26 15:39:38 +02:00
|
|
|
<td style='width:130px'>v -native 1mil.v</td>
|
2019-11-07 20:24:10 +01:00
|
|
|
<td style='width:120px'>v hello.v</td>
|
2021-04-02 19:53:01 +02:00
|
|
|
<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>
|
2021-06-06 08:52:29 +02:00
|
|
|
<td style='width:80px'>V lines</td>
|
|
|
|
<td style='width:95px'>V lines/s</td>
|
2019-11-07 18:38:27 +01:00
|
|
|
</tr>
|