2024-01-12 19:17:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2023 The original authors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2024-01-12 21:21:40 +01:00
|
|
|
package dev.morling.onebrc;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.lang.foreign.Arena;
|
|
|
|
import java.lang.reflect.Field;
|
|
|
|
import java.nio.channels.FileChannel;
|
|
|
|
import java.nio.channels.FileChannel.MapMode;
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
import java.nio.file.Path;
|
|
|
|
import java.nio.file.StandardOpenOption;
|
|
|
|
import java.util.TreeMap;
|
|
|
|
import sun.misc.Unsafe;
|
|
|
|
|
|
|
|
public class CalculateAverage_abeobk {
|
2024-01-15 18:53:31 +01:00
|
|
|
private static final boolean SHOW_COLLISIONS = false;
|
|
|
|
|
2024-01-12 21:21:40 +01:00
|
|
|
private static final String FILE = "./measurements.txt";
|
|
|
|
private static final int BUCKET_SIZE = 1 << 16;
|
|
|
|
private static final int BUCKET_MASK = BUCKET_SIZE - 1;
|
|
|
|
private static final int MAX_STR_LEN = 100;
|
|
|
|
private static final Unsafe UNSAFE = initUnsafe();
|
|
|
|
private static final long[] HASH_MASKS = new long[]{
|
|
|
|
0x0L,
|
|
|
|
0xffL,
|
|
|
|
0xffffL,
|
|
|
|
0xffffffL,
|
|
|
|
0xffffffffL,
|
|
|
|
0xffffffffffL,
|
|
|
|
0xffffffffffffL,
|
|
|
|
0xffffffffffffffL,
|
|
|
|
0xffffffffffffffffL, };
|
|
|
|
|
|
|
|
private static Unsafe initUnsafe() {
|
|
|
|
try {
|
|
|
|
Field theUnsafe = Unsafe.class.getDeclaredField("theUnsafe");
|
|
|
|
theUnsafe.setAccessible(true);
|
|
|
|
return (Unsafe) theUnsafe.get(Unsafe.class);
|
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
throw new RuntimeException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
static class Node {
|
|
|
|
long addr;
|
|
|
|
long tail;
|
|
|
|
int min, max;
|
|
|
|
int count;
|
|
|
|
long sum;
|
|
|
|
|
|
|
|
String key() {
|
|
|
|
byte[] sbuf = new byte[MAX_STR_LEN];
|
|
|
|
int keylen = (int) (tail >>> 56);
|
|
|
|
UNSAFE.copyMemory(null, addr, sbuf, Unsafe.ARRAY_BYTE_BASE_OFFSET, keylen);
|
|
|
|
return new String(sbuf, 0, keylen, StandardCharsets.UTF_8);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
return String.format("%.1f/%.1f/%.1f", min * 0.1, sum * 0.1 / count, max * 0.1);
|
|
|
|
}
|
2024-01-12 21:21:40 +01:00
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
Node(long a, long t, int val) {
|
|
|
|
addr = a;
|
|
|
|
tail = t;
|
|
|
|
sum = min = max = val;
|
2024-01-12 21:21:40 +01:00
|
|
|
count = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void add(int val) {
|
2024-01-15 18:53:31 +01:00
|
|
|
min = Math.min(min, val);
|
|
|
|
max = Math.max(max, val);
|
2024-01-12 21:21:40 +01:00
|
|
|
sum += val;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
void merge(Node other) {
|
|
|
|
min = Math.min(min, other.min);
|
|
|
|
max = Math.max(max, other.max);
|
2024-01-12 21:21:40 +01:00
|
|
|
sum += other.sum;
|
|
|
|
count += other.count;
|
|
|
|
}
|
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
boolean contentEquals(long other_addr, long other_tail) {
|
|
|
|
if (tail != other_tail) // compare tail & length at the same time
|
|
|
|
return false;
|
|
|
|
long my_addr = addr;
|
|
|
|
int nl = (int) (tail >> 59);
|
|
|
|
for (int i = 0; i < nl; i++, my_addr += 8, other_addr += 8) {
|
|
|
|
if (UNSAFE.getLong(my_addr) != UNSAFE.getLong(other_addr))
|
|
|
|
return false;
|
2024-01-12 21:21:40 +01:00
|
|
|
}
|
2024-01-15 18:53:31 +01:00
|
|
|
return true;
|
2024-01-12 21:21:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// split into chunks
|
|
|
|
static long[] slice(long start_addr, long end_addr, long chunk_size, int cpu_cnt) {
|
|
|
|
long[] ptrs = new long[cpu_cnt + 1];
|
|
|
|
ptrs[0] = start_addr;
|
|
|
|
for (int i = 1; i < cpu_cnt; i++) {
|
|
|
|
long addr = start_addr + i * chunk_size;
|
|
|
|
while (addr < end_addr && UNSAFE.getByte(addr++) != '\n')
|
|
|
|
;
|
|
|
|
ptrs[i] = Math.min(addr, end_addr);
|
|
|
|
}
|
|
|
|
ptrs[cpu_cnt] = end_addr;
|
|
|
|
return ptrs;
|
|
|
|
}
|
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
static final long getSemiPosCode(final long word) {
|
|
|
|
long xor_semi = word ^ 0x3b3b3b3b3b3b3b3bL; // xor with ;;;;;;;;
|
|
|
|
return (xor_semi - 0x0101010101010101L) & (~xor_semi & 0x8080808080808080L);
|
|
|
|
}
|
|
|
|
|
|
|
|
// very low collision mixer
|
|
|
|
// idea from https://github.com/Cyan4973/xxHash/tree/dev
|
|
|
|
// zero collision on test data
|
|
|
|
static final int xxh32(long hash) {
|
|
|
|
final int p1 = 0x85EBCA77; // prime
|
|
|
|
final int p2 = 0xC2B2AE3D; // prime
|
|
|
|
int low = (int) hash;
|
|
|
|
int high = (int) (hash >>> 32);
|
|
|
|
low ^= low >> 15;
|
|
|
|
low *= p1;
|
|
|
|
high ^= high >> 13;
|
|
|
|
high *= p2;
|
|
|
|
var h = low ^ high;
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2024-01-12 21:21:40 +01:00
|
|
|
public static void main(String[] args) throws InterruptedException, IOException {
|
|
|
|
try (var file = FileChannel.open(Path.of(FILE), StandardOpenOption.READ)) {
|
|
|
|
long start_addr = file.map(MapMode.READ_ONLY, 0, file.size(), Arena.global()).address();
|
|
|
|
long file_size = file.size();
|
|
|
|
long end_addr = start_addr + file_size;
|
2024-01-15 18:53:31 +01:00
|
|
|
|
|
|
|
// only use all cpus on large file
|
|
|
|
int cpu_cnt = file_size < 1e6 ? 1 : Runtime.getRuntime().availableProcessors();
|
2024-01-12 21:21:40 +01:00
|
|
|
long chunk_size = Math.ceilDiv(file_size, cpu_cnt);
|
|
|
|
|
|
|
|
// processing
|
|
|
|
var threads = new Thread[cpu_cnt];
|
|
|
|
var maps = new Node[cpu_cnt][];
|
|
|
|
var ptrs = slice(start_addr, end_addr, chunk_size, cpu_cnt);
|
2024-01-15 18:53:31 +01:00
|
|
|
int[] cls = new int[cpu_cnt];
|
2024-01-12 21:21:40 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < cpu_cnt; i++) {
|
|
|
|
int thread_id = i;
|
|
|
|
long start = ptrs[i];
|
|
|
|
long end = ptrs[i + 1];
|
2024-01-15 18:53:31 +01:00
|
|
|
maps[i] = new Node[BUCKET_SIZE + 10000]; // extra space for collisions
|
2024-01-12 21:21:40 +01:00
|
|
|
|
|
|
|
(threads[i] = new Thread(() -> {
|
|
|
|
long addr = start;
|
|
|
|
var map = maps[thread_id];
|
|
|
|
// parse loop
|
|
|
|
while (addr < end) {
|
|
|
|
long hash = 0;
|
|
|
|
long word = 0;
|
|
|
|
long row_addr = addr;
|
|
|
|
int semi_pos = 8;
|
2024-01-15 18:53:31 +01:00
|
|
|
word = UNSAFE.getLong(addr);
|
|
|
|
long semipos_code = getSemiPosCode(word);
|
|
|
|
|
|
|
|
while (semipos_code == 0) {
|
|
|
|
hash ^= word;
|
|
|
|
addr += 8;
|
2024-01-12 21:21:40 +01:00
|
|
|
word = UNSAFE.getLong(addr);
|
2024-01-15 18:53:31 +01:00
|
|
|
semipos_code = getSemiPosCode(word);
|
2024-01-12 21:21:40 +01:00
|
|
|
}
|
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
semi_pos = Long.numberOfTrailingZeros(semipos_code) >>> 3;
|
|
|
|
long tail = word & HASH_MASKS[semi_pos];
|
|
|
|
hash ^= tail;
|
|
|
|
addr += semi_pos;
|
|
|
|
|
|
|
|
int hash32 = xxh32(hash);
|
|
|
|
long keylen = (addr - row_addr);
|
|
|
|
tail = tail | (keylen << 56);
|
|
|
|
|
|
|
|
addr++;
|
2024-01-12 21:21:40 +01:00
|
|
|
|
|
|
|
// great idea from merykitty (Quan Anh Mai)
|
2024-01-15 18:53:31 +01:00
|
|
|
long num_word = UNSAFE.getLong(addr);
|
2024-01-12 21:21:40 +01:00
|
|
|
int dot_pos = Long.numberOfTrailingZeros(~num_word & 0x10101000);
|
|
|
|
addr += (dot_pos >>> 3) + 3;
|
|
|
|
int shift = 28 - dot_pos;
|
|
|
|
long signed = (~num_word << 59) >> 63;
|
|
|
|
long dsmask = ~(signed & 0xFF);
|
|
|
|
long digits = ((num_word & dsmask) << shift) & 0x0F000F0F00L;
|
|
|
|
long abs_val = ((digits * 0x640a0001) >>> 32) & 0x3FF;
|
|
|
|
int val = (int) ((abs_val ^ signed) - signed);
|
|
|
|
|
|
|
|
int bucket = (hash32 & BUCKET_MASK);
|
|
|
|
while (true) {
|
|
|
|
var node = map[bucket];
|
|
|
|
if (node == null) {
|
2024-01-15 18:53:31 +01:00
|
|
|
map[bucket] = new Node(row_addr, tail, val);
|
2024-01-12 21:21:40 +01:00
|
|
|
break;
|
|
|
|
}
|
2024-01-15 18:53:31 +01:00
|
|
|
if (node.contentEquals(row_addr, tail)) {
|
|
|
|
node.add(val);
|
2024-01-12 21:21:40 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
bucket++;
|
2024-01-15 18:53:31 +01:00
|
|
|
if (SHOW_COLLISIONS)
|
|
|
|
cls[thread_id]++;
|
2024-01-12 21:21:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})).start();
|
|
|
|
}
|
|
|
|
|
|
|
|
// join all
|
|
|
|
for (var thread : threads)
|
|
|
|
thread.join();
|
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
if (SHOW_COLLISIONS) {
|
|
|
|
for (int i = 0; i < cpu_cnt; i++) {
|
|
|
|
System.out.println("thread-" + i + " collision = " + cls[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-12 21:21:40 +01:00
|
|
|
// collect results
|
2024-01-15 18:53:31 +01:00
|
|
|
TreeMap<String, Node> ms = new TreeMap<>();
|
2024-01-12 21:21:40 +01:00
|
|
|
for (var map : maps) {
|
|
|
|
for (var node : map) {
|
|
|
|
if (node == null)
|
|
|
|
continue;
|
2024-01-15 18:53:31 +01:00
|
|
|
var stat = ms.putIfAbsent(node.key(), node);
|
2024-01-12 21:21:40 +01:00
|
|
|
if (stat != null)
|
2024-01-15 18:53:31 +01:00
|
|
|
stat.merge(node);
|
2024-01-12 21:21:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-15 18:53:31 +01:00
|
|
|
if (!SHOW_COLLISIONS)
|
|
|
|
System.out.println(ms);
|
2024-01-12 21:21:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|