diff options
| author | Roman Musin <995612+roman-r-m@users.noreply.github.com> | 2024-01-23 19:19:07 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-23 20:19:07 +0100 |
| commit | 6c0949969a5df71df85397ce3338f0154e6727ac (patch) | |
| tree | 852da4358648ab1992372230c16d2abc57bd3c82 /src/main/java/dev/morling/onebrc | |
| parent | ba793e88cd3c1b7767e00180c721b85cf5c50e28 (diff) | |
Native image + a few smaller optimisations (#564)
* Inline parsing name and station to avoid constantly updating the offset field (-100ms)
* Remove Worker class, inline the logic into lambda
* Accumulate results in an int matrix instead of using result row (-50ms)
* Use native image
Diffstat (limited to 'src/main/java/dev/morling/onebrc')
| -rw-r--r-- | src/main/java/dev/morling/onebrc/CalculateAverage_roman_r_m.java | 247 |
1 files changed, 114 insertions, 133 deletions
diff --git a/src/main/java/dev/morling/onebrc/CalculateAverage_roman_r_m.java b/src/main/java/dev/morling/onebrc/CalculateAverage_roman_r_m.java index 1a43ae5..896616d 100644 --- a/src/main/java/dev/morling/onebrc/CalculateAverage_roman_r_m.java +++ b/src/main/java/dev/morling/onebrc/CalculateAverage_roman_r_m.java @@ -64,119 +64,6 @@ public class CalculateAverage_roman_r_m { return start + Long.numberOfTrailingZeros(i) / 8; } - static class Worker { - private final MemorySegment ms; - private final long end; - private long offset; - - public Worker(FileChannel channel, long start, long end) { - try { - this.ms = channel.map(FileChannel.MapMode.READ_ONLY, start, end - start, Arena.ofConfined()); - this.offset = ms.address(); - this.end = ms.address() + end - start; - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - private void parseName(ByteString station) { - long start = offset; - long next = UNSAFE.getLong(offset); - long pattern = applyPattern(next, SEMICOLON_MASK); - int bytes; - if (pattern != 0) { - bytes = Long.numberOfTrailingZeros(pattern) / 8; - offset += bytes; - long h = Long.reverseBytes(next) >>> (8 * (8 - bytes)); - station.hash = (int) (h ^ (h >>> 32)); - } - else { - long h = next; - station.hash = (int) (h ^ (h >>> 32)); - while (pattern == 0) { - offset += 8; - next = UNSAFE.getLong(offset); - pattern = applyPattern(next, SEMICOLON_MASK); - } - bytes = Long.numberOfTrailingZeros(pattern) / 8; - offset += bytes; - } - - int len = (int) (offset - start); - station.offset = start; - station.len = len; - station.tail = next & ((1L << (8 * bytes)) - 1); - - offset++; - } - - int parseNumberFast() { - long encodedVal = UNSAFE.getLong(offset); - - int neg = 1 - Integer.bitCount((int) (encodedVal & 0x10)); - encodedVal >>>= 8 * neg; - - var len = applyPattern(encodedVal, DOT_MASK); - len = Long.numberOfTrailingZeros(len) / 8; - - encodedVal ^= broadcast((byte) 0x30); - - int intPart = (int) (encodedVal & ((1 << (8 * len)) - 1)); - intPart <<= 8 * (2 - len); - intPart *= (100 * 256 + 10); - intPart = (intPart & 0x3FF80) >>> 8; - - int frac = (int) ((encodedVal >>> (8 * (len + 1))) & 0xFF); - - offset += neg + len + 3; // 1 for . + 1 for fractional part + 1 for new line char - int sign = 1 - 2 * neg; - int val = intPart + frac; - return sign * val; - } - - int parseNumberSlow() { - int neg = 1 - Integer.bitCount(UNSAFE.getByte(offset) & 0x10); - offset += neg; - - int val = UNSAFE.getByte(offset++) - '0'; - byte b; - while ((b = UNSAFE.getByte(offset++)) != '.') { - val = val * 10 + (b - '0'); - } - b = UNSAFE.getByte(offset); - val = val * 10 + (b - '0'); - offset += 2; - val *= 1 - 2 * neg; - return val; - } - - int parseNumber() { - if (end - offset >= 8) { - return parseNumberFast(); - } - else { - return parseNumberSlow(); - } - } - - public TreeMap<String, ResultRow> run() { - var resultStore = new ResultStore(); - var station = new ByteString(ms); - - while (offset < end) { - parseName(station); - long val = parseNumber(); - var a = resultStore.get(station); - a.min = Math.min(a.min, val); - a.max = Math.max(a.max, val); - a.sum += val; - a.count++; - } - return resultStore.toMap(); - } - } - public static void main(String[] args) throws Exception { Field f = Unsafe.class.getDeclaredField("theUnsafe"); f.setAccessible(true); @@ -200,12 +87,97 @@ public class CalculateAverage_roman_r_m { var result = IntStream.range(0, numThreads) .parallel() .mapToObj(i -> { - long start = i == 0 ? 0 : bounds[i - 1] + 1; - long end = bounds[i]; - Worker worker = new Worker(channel, start, end); - var res = worker.run(); - worker.ms.unload(); - return res; + try { + long segmentStart = i == 0 ? 0 : bounds[i - 1] + 1; + long segmentEnd = bounds[i]; + var segment = channel.map(FileChannel.MapMode.READ_ONLY, segmentStart, segmentEnd - segmentStart, Arena.ofConfined()); + + var resultStore = new ResultStore(); + var station = new ByteString(segment); + long offset = segment.address(); + long end = offset + segment.byteSize(); + while (offset < end) { + // parsing station name + long start = offset; + long next = UNSAFE.getLong(offset); + long pattern = applyPattern(next, SEMICOLON_MASK); + int bytes; + if (pattern != 0) { + bytes = Long.numberOfTrailingZeros(pattern) / 8; + offset += bytes; + long h = Long.reverseBytes(next) >>> (8 * (8 - bytes)); + station.hash = (int) (h ^ (h >>> 32)); + } + else { + long h = next; + station.hash = (int) (h ^ (h >>> 32)); + while (pattern == 0) { + offset += 8; + next = UNSAFE.getLong(offset); + pattern = applyPattern(next, SEMICOLON_MASK); + } + bytes = Long.numberOfTrailingZeros(pattern) / 8; + offset += bytes; + } + + int len = (int) (offset - start); + station.offset = start; + station.len = len; + station.tail = next & ((1L << (8 * bytes)) - 1); + + offset++; + + // parsing temperature + // TODO next may contain temperature as well, maybe try using it if we know the full number is there + // 8 - bytes >= 5 -> bytes <= 3 + long val; + if (end - offset >= 8) { + long encodedVal = UNSAFE.getLong(offset); + + int neg = 1 - Integer.bitCount((int) (encodedVal & 0x10)); + encodedVal >>>= 8 * neg; + + long numLen = applyPattern(encodedVal, DOT_MASK); + numLen = Long.numberOfTrailingZeros(numLen) / 8; + + encodedVal ^= broadcast((byte) 0x30); + + int intPart = (int) (encodedVal & ((1 << (8 * numLen)) - 1)); + intPart <<= 8 * (2 - numLen); + intPart *= (100 * 256 + 10); + intPart = (intPart & 0x3FF80) >>> 8; + + int frac = (int) ((encodedVal >>> (8 * (numLen + 1))) & 0xFF); + + offset += neg + numLen + 3; // 1 for . + 1 for fractional part + 1 for new line char + int sign = 1 - 2 * neg; + val = sign * (intPart + frac); + } + else { + int neg = 1 - Integer.bitCount(UNSAFE.getByte(offset) & 0x10); + offset += neg; + + val = UNSAFE.getByte(offset++) - '0'; + byte b; + while ((b = UNSAFE.getByte(offset++)) != '.') { + val = val * 10 + (b - '0'); + } + b = UNSAFE.getByte(offset); + val = val * 10 + (b - '0'); + offset += 2; + val *= 1 - (2L * neg); + } + + resultStore.update(station, (int) val); + } + + segment.unload(); + + return resultStore.toMap(); + } + catch (Exception e) { + throw new RuntimeException(e); + } }).reduce((m1, m2) -> { m2.forEach((k, v) -> m1.merge(k, v, ResultRow::merge)); return m1; @@ -275,10 +247,17 @@ public class CalculateAverage_roman_r_m { } private static final class ResultRow { - long min = 1000; - long sum = 0; - long max = -1000; - int count = 0; + long min; + long sum; + long max; + int count; + + public ResultRow(int[] values) { + min = values[0]; + max = values[1]; + sum = values[2]; + count = values[3]; + } public String toString() { return round(min / 10.0) + "/" + round(sum / 10.0 / count) + "/" + round(max / 10.0); @@ -300,9 +279,9 @@ public class CalculateAverage_roman_r_m { static class ResultStore { private static final int SIZE = 16384; private final ByteString[] keys = new ByteString[SIZE]; - private final ResultRow[] values = new ResultRow[SIZE]; + private final int[][] values = new int[SIZE][]; - ResultRow get(ByteString s) { + void update(ByteString s, int value) { int h = s.hashCode(); int idx = (SIZE - 1) & h; @@ -311,18 +290,20 @@ public class CalculateAverage_roman_r_m { i++; idx = (idx + i * i) % SIZE; } - ResultRow result; if (keys[idx] == null) { keys[idx] = s.copy(); - result = new ResultRow(); - values[idx] = result; + values[idx] = new int[4]; + values[idx][0] = value; + values[idx][1] = value; + values[idx][2] = value; + values[idx][3] = 1; } else { - result = values[idx]; - // TODO see it it makes any difference - // keys[idx].offset = s.offset; + values[idx][0] = Math.min(values[idx][0], value); + values[idx][1] = Math.max(values[idx][1], value); + values[idx][2] += value; + values[idx][3] += 1; } - return result; } TreeMap<String, ResultRow> toMap() { @@ -330,7 +311,7 @@ public class CalculateAverage_roman_r_m { var result = new TreeMap<String, ResultRow>(); for (int i = 0; i < SIZE; i++) { if (keys[i] != null) { - result.put(keys[i].asString(buf), values[i]); + result.put(keys[i].asString(buf), new ResultRow(values[i])); } } return result; |
