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

76 lines
2.0 KiB
HTML

<!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, td, th {
border-collapse: collapse;
border: 1px solid #dfdfdf;
}
th {
background-color: lightgray;
color: black;
padding: 5px;
}
td {
padding: 5px;
position: relative;
}
table td:nth-child(3) {
width: 650px!important;
overflow: hidden;
display: block;
border: 0px;
border-bottom: 1px solid lightgray;
}
.diff {
border-radius: 2.5px;
color: #ffffff;
padding: 0 5px 0 5px;
position: absolute;
font-size: 14px;
bottom: 0px;
right: 0px;
}
.minus {
background-color: rgb(195, 74, 104);
}
.plus {
background-color: #8BC34A;
}
.equal {
background-color: rgb(113, 68, 172);
}
</style>
</head>
<body>
<h2><a href='/'>Is V still fast?</a></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>
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>
<table>
<tr>
<th style='width:180px'>&nbsp;&nbsp;&nbsp;&nbsp;Timestamp&nbsp;&nbsp;&nbsp;&nbsp;</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>
</tr>