Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 754098d

Browse files
authored
save
1 parent c3cafdf commit 754098d

18 files changed

+1889
-0
lines changed

.github/workflows/deploy-pages.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: deploy-pages
2+
on:
3+
push:
4+
branches: "main"
5+
paths-ignore:
6+
- README.md
7+
- CONTRIBUTING.md
8+
- LICENSE
9+
- .gitignore
10+
- .github/**
11+
- "!.github/workflows/deploy-pages.yml"
12+
workflow_dispatch:
13+
concurrency: ${{ github.workflow }}
14+
jobs:
15+
deploy-pages:
16+
permissions:
17+
pages: write
18+
id-token: write
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deploy-pages.outputs.page_url }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-node@v4
26+
with:
27+
node-version: "20"
28+
cache: npm
29+
- run: npm ci
30+
- id: configure-pages
31+
uses: actions/configure-pages@v4
32+
- run: npm run build
33+
env:
34+
BASE_URL: ${{ steps.configure-pages.outputs.base_url }}/
35+
- uses: actions/upload-pages-artifact@v3
36+
with:
37+
path: .vitepress/dist
38+
- id: deploy-pages
39+
uses: actions/deploy-pages@v4

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# https://vitepress.dev/
2+
**/.vitepress/dist
3+
**/.vitepress/cache
4+
5+
#region https://github.com/github/gitignore/blob/main/Node.gitignore
16
# Logs
27
logs
38
*.log
@@ -128,3 +133,4 @@ dist
128133
.yarn/build-state.yml
129134
.yarn/install-state.gz
130135
.pnp.*
136+
#endregion

.vitepress/components/HomeContent.vue

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<template>
2+
<div class="vp-doc container">
3+
<slot></slot>
4+
</div>
5+
</template>
6+
7+
<style scoped>
8+
.container {
9+
margin: auto;
10+
width: 100%;
11+
max-width: 1280px;
12+
padding: 0 24px;
13+
}
14+
15+
@media (min-width: 640px) {
16+
.container {
17+
padding: 0 48px;
18+
}
19+
}
20+
21+
@media (min-width: 960px) {
22+
.container {
23+
width: 100%;
24+
padding: 0 64px;
25+
}
26+
}
27+
</style>

.vitepress/config.ts

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import { defineConfig } from "vitepress";
2+
3+
// https://vitepress.dev/reference/site-config
4+
export default defineConfig({
5+
title: "1BRC",
6+
description: "1 Billion Row Challenge",
7+
themeConfig: {
8+
// https://vitepress.dev/reference/default-theme-config
9+
nav: [
10+
// { text: 'Home', link: '/' },
11+
// { text: 'Examples', link: '/markdown-examples' }
12+
],
13+
14+
sidebar: [
15+
// {
16+
// text: 'Examples',
17+
// items: [
18+
// { text: 'Markdown Examples', link: '/markdown-examples' },
19+
// { text: 'Runtime API Examples', link: '/api-examples' }
20+
// ]
21+
// }
22+
],
23+
24+
socialLinks: [
25+
{ icon: "github", link: "https://github.com/1brc/1brc.github.io" },
26+
],
27+
},
28+
});

.vitepress/theme/index.ts

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// https://vitepress.dev/guide/custom-theme
2+
import { h } from 'vue'
3+
import type { Theme } from 'vitepress'
4+
import DefaultTheme from 'vitepress/theme'
5+
import './style.css'
6+
7+
export default {
8+
extends: DefaultTheme,
9+
Layout: () => {
10+
return h(DefaultTheme.Layout, null, {
11+
// https://vitepress.dev/guide/extending-default-theme#layout-slots
12+
})
13+
},
14+
enhanceApp({ app, router, siteData }) {
15+
// ...
16+
}
17+
} satisfies Theme

.vitepress/theme/style.css

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
/**
2+
* Customize default theme styling by overriding CSS variables:
3+
* https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css
4+
*/
5+
6+
/**
7+
* Colors
8+
*
9+
* Each colors have exact same color scale system with 3 levels of solid
10+
* colors with different brightness, and 1 soft color.
11+
*
12+
* - `XXX-1`: The most solid color used mainly for colored text. It must
13+
* satisfy the contrast ratio against when used on top of `XXX-soft`.
14+
*
15+
* - `XXX-2`: The color used mainly for hover state of the button.
16+
*
17+
* - `XXX-3`: The color for solid background, such as bg color of the button.
18+
* It must satisfy the contrast ratio with pure white (#ffffff) text on
19+
* top of it.
20+
*
21+
* - `XXX-soft`: The color used for subtle background such as custom container
22+
* or badges. It must satisfy the contrast ratio when putting `XXX-1` colors
23+
* on top of it.
24+
*
25+
* The soft color must be semi transparent alpha channel. This is crucial
26+
* because it allows adding multiple "soft" colors on top of each other
27+
* to create a accent, such as when having inline code block inside
28+
* custom containers.
29+
*
30+
* - `default`: The color used purely for subtle indication without any
31+
* special meanings attched to it such as bg color for menu hover state.
32+
*
33+
* - `brand`: Used for primary brand colors, such as link text, button with
34+
* brand theme, etc.
35+
*
36+
* - `tip`: Used to indicate useful information. The default theme uses the
37+
* brand color for this by default.
38+
*
39+
* - `warning`: Used to indicate warning to the users. Used in custom
40+
* container, badges, etc.
41+
*
42+
* - `danger`: Used to show error, or dangerous message to the users. Used
43+
* in custom container, badges, etc.
44+
* -------------------------------------------------------------------------- */
45+
46+
:root {
47+
--vp-c-default-1: var(--vp-c-gray-1);
48+
--vp-c-default-2: var(--vp-c-gray-2);
49+
--vp-c-default-3: var(--vp-c-gray-3);
50+
--vp-c-default-soft: var(--vp-c-gray-soft);
51+
52+
--vp-c-brand-1: var(--vp-c-indigo-1);
53+
--vp-c-brand-2: var(--vp-c-indigo-2);
54+
--vp-c-brand-3: var(--vp-c-indigo-3);
55+
--vp-c-brand-soft: var(--vp-c-indigo-soft);
56+
57+
--vp-c-tip-1: var(--vp-c-brand-1);
58+
--vp-c-tip-2: var(--vp-c-brand-2);
59+
--vp-c-tip-3: var(--vp-c-brand-3);
60+
--vp-c-tip-soft: var(--vp-c-brand-soft);
61+
62+
--vp-c-warning-1: var(--vp-c-yellow-1);
63+
--vp-c-warning-2: var(--vp-c-yellow-2);
64+
--vp-c-warning-3: var(--vp-c-yellow-3);
65+
--vp-c-warning-soft: var(--vp-c-yellow-soft);
66+
67+
--vp-c-danger-1: var(--vp-c-red-1);
68+
--vp-c-danger-2: var(--vp-c-red-2);
69+
--vp-c-danger-3: var(--vp-c-red-3);
70+
--vp-c-danger-soft: var(--vp-c-red-soft);
71+
}
72+
73+
/**
74+
* Component: Button
75+
* -------------------------------------------------------------------------- */
76+
77+
:root {
78+
--vp-button-brand-border: transparent;
79+
--vp-button-brand-text: var(--vp-c-white);
80+
--vp-button-brand-bg: var(--vp-c-brand-3);
81+
--vp-button-brand-hover-border: transparent;
82+
--vp-button-brand-hover-text: var(--vp-c-white);
83+
--vp-button-brand-hover-bg: var(--vp-c-brand-2);
84+
--vp-button-brand-active-border: transparent;
85+
--vp-button-brand-active-text: var(--vp-c-white);
86+
--vp-button-brand-active-bg: var(--vp-c-brand-1);
87+
}
88+
89+
/**
90+
* Component: Home
91+
* -------------------------------------------------------------------------- */
92+
93+
:root {
94+
--vp-home-hero-name-color: transparent;
95+
--vp-home-hero-name-background: -webkit-linear-gradient(
96+
120deg,
97+
#fe3434 50%,
98+
#ff417a
99+
);
100+
101+
--vp-home-hero-image-background-image: linear-gradient(
102+
-45deg,
103+
#fe7434 50%,
104+
#ffb547 50%
105+
);
106+
--vp-home-hero-image-filter: blur(44px);
107+
}
108+
109+
@media (min-width: 640px) {
110+
:root {
111+
--vp-home-hero-image-filter: blur(56px);
112+
}
113+
}
114+
115+
@media (min-width: 960px) {
116+
:root {
117+
--vp-home-hero-image-filter: blur(68px);
118+
}
119+
}
120+
121+
/**
122+
* Component: Custom Block
123+
* -------------------------------------------------------------------------- */
124+
125+
:root {
126+
--vp-custom-block-tip-border: transparent;
127+
--vp-custom-block-tip-text: var(--vp-c-text-1);
128+
--vp-custom-block-tip-bg: var(--vp-c-brand-soft);
129+
--vp-custom-block-tip-code-bg: var(--vp-c-brand-soft);
130+
}
131+
132+
/**
133+
* Component: Algolia
134+
* -------------------------------------------------------------------------- */
135+
136+
.DocSearch {
137+
--docsearch-primary-color: var(--vp-c-brand-1) !important;
138+
}

assets/c.png

22.7 KB
Loading

assets/go.png

15.1 KB
Loading

assets/hero.png

16.2 KB
Loading

assets/java.png

18.9 KB
Loading

assets/javascript.png

23.8 KB
Loading

assets/logo.png

16.2 KB
Loading

assets/python.png

175 KB
Loading

assets/rust.png

38 KB
Loading

assets/zig.png

4.77 KB
Loading

index.md

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
# https://vitepress.dev/reference/default-theme-home-page
3+
layout: home
4+
5+
hero:
6+
name: "1BRC"
7+
text: "1 Billion Row Challenge"
8+
tagline: Calculate the min, max, and average of <b>1 billion</b> measurements
9+
image: ./assets/hero.png
10+
actions:
11+
- theme: brand
12+
text: Choose a language 👇
13+
- theme: alt
14+
text: Original blog post
15+
link: https://www.morling.dev/blog/one-billion-row-challenge/
16+
17+
features:
18+
- icon:
19+
src: ./assets/java.png
20+
title: 1BRC in Java
21+
details: The original 1BRC language! 🎉
22+
link: https://github.com/gunnarmorling/1brc#submitting
23+
linkText: Submit your solution!
24+
- icon:
25+
src: ./assets/c.png
26+
title: 1BRC in C/C++
27+
details: Try your hand at processing 12 GB of text using low-level C code! ⚡
28+
link: https://github.com/dannyvankooten/1brc#submitting
29+
linkText: Submit your solution!
30+
- icon:
31+
src: ./assets/python.png
32+
title: 1BRC in Python
33+
details: Use the power of snakes to read 1 billion lines of text! 🐍
34+
link: https://github.com/ifnesi/1brc#submitting
35+
linkText: Submit your solution!
36+
- icon:
37+
src: ./assets/go.png
38+
title: 1BRC in Go
39+
details: Go get started to see if you can average 1B measurements in Go! 🐹
40+
link: https://github.com/AlexanderYastrebov/1brc#submitting
41+
linkText: Submit your solution!
42+
- icon:
43+
src: ./assets/javascript.png
44+
title: 1BRC in JavaScript
45+
details: Wrangle with the world's most popular programming language to process 1B rows! 💻
46+
link: https://github.com/Edgar-P-yan/1brc-nodejs-bun#submitting
47+
linkText: Submit your solution!
48+
- icon:
49+
src: ./assets/rust.png
50+
title: 1BRC in Rust
51+
details: Embrace your inner iron crab and read a ginormous file in Rust! 🦀
52+
link: https://github.com/tumdum/1brc#submitting
53+
linkText: Submit your solution!
54+
- icon:
55+
src: ./assets/zig.png
56+
title: 1BRC in Zig
57+
details: Use this new language to process 1B rows of text! 🧩
58+
link: https://github.com/candrewlee14/1brc-zig#submitting
59+
linkText: Submit your solution!
60+
---
61+
62+
<script setup>
63+
import HomeContent from './.vitepress/components/HomeContent.vue'
64+
</script>
65+
66+
<style>
67+
/* First action button has no action! Remove its button-like style. */
68+
.VPHomeHero .actions .action:first-of-type .VPButton {
69+
background-color: transparent;
70+
}
71+
</style>
72+
73+
<HomeContent>
74+
75+
<small>Don't see your favorite language listed above? [Open an Issue to add it!](https://github.com/1brc/1brc.github.io/issues/new)</small>
76+
77+
**🎉 Open for submissions!** \
78+
📆 Challenge runs from **Jan 1, 2024** to **Jan 31, 2024**
79+
80+
Choose one of the languages listed above to see the language-specific leaderboard and instructions for submitting your solution to that language's repository.
81+
82+
## Global leaderboard
83+
84+
| | Time | Solution | Language | Author |
85+
| --- | ---------: | ---------------------------------------------------------------------------------------------------------------------------- | -------- | -------------------------------------------------- |
86+
| 1. | 6.159s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_royvanrijn.java) | [Java] | [royvanrijn](https://github.com/royvanrijn) |
87+
| 2. | 6.532s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_thomaswue.java) | [Java] | [Thomas Wuerthinger](https://github.com/thomaswue) |
88+
| 3. | 7.620s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_merykitty.java) | [Java] | [Quan Anh Mai](https://github.com/merykitty) |
89+
| 4. | 9.062s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_obourgain.java) | [Java] | [obourgain](https://github.com/obourgain) |
90+
| 5. | 9.338s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_ebarlas.java) | [Java] | [Elliot Barlas](https://github.com/ebarlas) |
91+
| 6. | 10.589s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_artsiomkorzun.java) | [Java] | [Artsiom Korzun](https://github.com/artsiomkorzun) |
92+
| 7. | 10.613s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_spullara.java) | [Java] | [Sam Pullara](https://github.com/spullara) |
93+
| 8. | 11.038s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_asun.java) | [Java] | [Andrew Sun](https://github.com/as-com) |
94+
| 9. | 11.222s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_isolgpus.java) | [Java] | [Jamie Stansfield](https://github.com/isolgpus) |
95+
| 10. | 13.277s | [link](https://github.com/gunnarmorling/1brc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage_yavuztas.java) | [Java] | [Yavuz Tas](https://github.com/yavuztas) |
96+
| | 4m 13.449s | [link](https://github.com/gunnarmorling/onebrc/blob/main/src/main/java/dev/morling/onebrc/CalculateAverage.java) | [Java] | _Reference implementation_ |
97+
98+
[Java]: https://github.com/gunnarmorling/1brc
99+
100+
</HomeContent>

0 commit comments

Comments
 (0)