2019-11-20 17:59:37 +03:00
|
|
|
<!DOCTYPE html>
|
2019-11-07 20:38:27 +03:00
|
|
|
<html>
|
|
|
|
<head>
|
2019-11-20 17:59:37 +03:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-11-07 21:59:34 +03:00
|
|
|
<title>Is V still fast?</title>
|
2019-11-07 20:38:27 +03:00
|
|
|
<style>
|
|
|
|
*, body {
|
2019-11-20 17:59:37 +03:00
|
|
|
font-family: Menlo, Monospace, 'Courier New';
|
2019-11-07 20:38:27 +03:00
|
|
|
}
|
2022-11-01 16:13:09 +03:00
|
|
|
table, td, th {
|
2019-11-07 20:38:27 +03:00
|
|
|
border-collapse: collapse;
|
|
|
|
border: 1px solid #dfdfdf;
|
|
|
|
}
|
2022-11-01 16:13:09 +03:00
|
|
|
th {
|
|
|
|
background-color: lightgray;
|
|
|
|
color: black;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
2019-11-07 20:38:27 +03:00
|
|
|
td {
|
|
|
|
padding: 5px;
|
2019-11-20 17:59:37 +03:00
|
|
|
position: relative;
|
|
|
|
}
|
2022-11-01 16:13:09 +03:00
|
|
|
table td:nth-child(3) {
|
|
|
|
width: 650px!important;
|
|
|
|
overflow: hidden;
|
2022-11-01 17:05:50 +03:00
|
|
|
display: block;
|
|
|
|
border: 0px;
|
|
|
|
border-bottom: 1px solid lightgray;
|
2022-11-01 16:13:09 +03:00
|
|
|
}
|
2019-11-20 17:59:37 +03:00
|
|
|
.diff {
|
|
|
|
border-radius: 2.5px;
|
|
|
|
color: #ffffff;
|
|
|
|
padding: 0 5px 0 5px;
|
|
|
|
position: absolute;
|
2022-11-01 16:13:09 +03:00
|
|
|
font-size: 14px;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
2019-11-20 17:59:37 +03:00
|
|
|
}
|
|
|
|
.minus {
|
|
|
|
background-color: rgb(195, 74, 104);
|
|
|
|
}
|
|
|
|
.plus {
|
|
|
|
background-color: #8BC34A;
|
|
|
|
}
|
|
|
|
.equal {
|
|
|
|
background-color: rgb(113, 68, 172);
|
2019-11-07 20:38:27 +03:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-12-28 14:51:26 +03:00
|
|
|
<h2><a href='/'>Is V still fast?</a></h2>
|
2019-11-07 20:38:27 +03:00
|
|
|
|
2019-11-08 07:49:56 +03:00
|
|
|
Monitoring compilation speed for each commit. <br><br>
|
2020-12-23 12:53:34 +03: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 12:08:04 +03:00
|
|
|
Source code: <a target=blank href='https://github.com/vlang/v/blob/master/cmd/tools/fast/fast.v'>fast.v</a> <br><br>
|
2023-02-27 12:40:22 +03:00
|
|
|
Older stats: <a href="2023.html">2023</a>, <a href="2022.html">2022</a>, <a href="2021.html">2021</a>, <a href="2020.html">2020</a><br><br>
|
2019-11-07 20:38:27 +03:00
|
|
|
<table>
|
|
|
|
<tr>
|
2022-11-01 16:13:09 +03:00
|
|
|
<th style='width:180px'> Timestamp </th>
|
|
|
|
<th style='width:85px'>Commit</th>
|
|
|
|
<th class='cmessage'>Commit Message</td>
|
|
|
|
<th style='width:120px;white-space: nowrap'>v -o v.c</th>
|
|
|
|
<th style='width:120px;white-space: nowrap'>v -o v</th>
|
|
|
|
<th style='width:130px'>v -native 1mil.v</th>
|
|
|
|
<th style='width:120px;white-space: nowrap'>v hello.v</th>
|
|
|
|
<th style='width:85px;white-space: nowrap'>v.c size</th>
|
|
|
|
<th style='width:55px;white-space: nowrap'>parse</th>
|
|
|
|
<th style='width:55px'>check</th>
|
|
|
|
<th style='width:55px'>cgen</th>
|
|
|
|
<th style='width:55px'>scan</th>
|
|
|
|
<th style='width:80px;white-space: nowrap'>V lines</th>
|
|
|
|
<th style='width:95px;white-space: nowrap'>V lines/s</th>
|
2019-11-07 20:38:27 +03:00
|
|
|
</tr>
|
2022-11-01 16:13:09 +03:00
|
|
|
|