-
Notifications
You must be signed in to change notification settings - Fork 15
/
marcus.go
603 lines (541 loc) · 13.9 KB
/
marcus.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
package main
import (
"bufio"
"fmt"
"math"
"math/bits"
"os"
"runtime"
"runtime/debug"
"runtime/pprof"
"slices"
"sync"
"syscall"
"unsafe"
)
const (
inputFile = "measurements.txt"
// Set profile to true to generate CPU and heap profiles.
profile = false
// Set runTestsAndAssertions to run tests at the start of the program and
// perform runtime assertions.
runTestsAndAssertions = false
// numGoroutines controls the number of goroutines to spawn to scan the
// input file.
// The processor has 8 cores + 2 efficiency cores.
numGoroutines = 10
)
func main() {
// Disable GC. We don't need that!
debug.SetGCPercent(-1)
if runTestsAndAssertions {
// Run tests.
TestParseTemp()
TestSemiColonPosition()
TestShortKey()
}
if profile {
// Profile CPU.
pf, err := os.Create("cpu.pb")
if err != nil {
panic(err)
}
defer pf.Close()
if err := pprof.StartCPUProfile(pf); err != nil {
panic(err)
}
defer pprof.StopCPUProfile()
}
// Run the program.
Run()
if profile {
// Profile memory.
mf, err := os.Create("mem.pb")
if err != nil {
panic(err)
}
defer mf.Close()
runtime.GC()
if err := pprof.WriteHeapProfile(mf); err != nil {
panic(err)
}
}
}
// Run runs the program.
func Run() {
// Determine the size of the file.
info, err := os.Stat(inputFile)
if err != nil {
panic(err)
}
size := uint64(info.Size())
chunkSize := size / numGoroutines
f, err := os.Open(inputFile)
if err != nil {
panic(err)
}
// mmap the file.
data, err := syscall.Mmap(int(f.Fd()), 0, int(size), syscall.PROT_READ, syscall.MAP_SHARED)
if err != nil {
panic(err)
}
var m0, m1, m2, m3, m4, m5, m6, m7, m8, m9 *SummaryMap
var wg sync.WaitGroup
for i := 0; i < numGoroutines; i++ {
start := uint64(i) * chunkSize
end := uint64(i+1) * chunkSize
if i == numGoroutines-1 {
end = uint64(len(data)) - 1
}
wg.Add(1)
go func(g int, start, end uint64) {
// Allocate a summary map.
var m SummaryMap
switch g {
case 0:
m0 = &m
case 1:
m1 = &m
case 2:
m2 = &m
case 3:
m3 = &m
case 4:
m4 = &m
case 5:
m5 = &m
case 6:
m6 = &m
case 7:
m7 = &m
case 8:
m8 = &m
case 9:
m9 = &m
}
firstScanner := g == 0
lastScanner := g == numGoroutines-1
Scan(&m, data, start, end, firstScanner, lastScanner)
wg.Done()
}(i, start, end)
}
// Wait for the scanners to finish.
wg.Wait()
// Put the maps in an array so that they are easier to work with.
maps := [...]*SummaryMap{m0, m1, m2, m3, m4, m5, m6, m7, m8, m9}
// Count the number of total cities collected.
numAllCities := 0
for i := range maps {
numAllCities += len(maps[i].Keys())
}
// Allocate a slice to hold all possible cities.
cities := make([]string, numAllCities)
// Copy the cities from each map into the new slice.
tmp := cities
for i := range maps {
c := maps[i].Keys()
copy(tmp, c)
tmp = tmp[len(c):]
}
// Sort and de-duplicate the cities.
slices.Sort(cities)
cities = slices.Compact(cities)
// Print the output.
w := bufio.NewWriter(os.Stdout)
for _, city := range cities {
s := Summary{
key: city,
min: math.MaxInt16,
max: math.MinInt16,
}
// Build a shortKey for the city to aid the lookups.
u := *(*uint64)(unsafe.Pointer(unsafe.StringData(city)))
shortKey := MakeShortKey(u, len(city))
// Merge all summaries for this city together.
for i := range maps {
if sub := maps[i].LookupExisting(shortKey, city); sub != nil {
s.Merge(sub)
}
}
_, err := fmt.Fprintf(w, "%s=%.1f/%.1f/%.1f\n", city, s.Min(), s.Avg(), s.Max())
if err != nil {
panic(err)
}
}
if err := w.Flush(); err != nil {
panic(err)
}
}
// Scan scans the data from start until ~end, adding records to the SummaryMap.
func Scan(m *SummaryMap, data []byte, start, end uint64, firstScanner, lastScanner bool) {
head := start
if !firstScanner {
// Skip the first line unless this is the goroutine reading from
// the beginning. The previous goroutine will scan the skipped
// line.
for ; head < end; head++ {
if data[head] == '\n' {
head++
break
}
}
}
scanPast := end
if lastScanner {
// We can't scan past the end of the file.
scanPast -= 2
}
for {
var city []byte
firstBytes := *(*uint64)(unsafe.Pointer(&data[head]))
// Look for a semicolon in the first 8 bytes.
var p int
if p = SemiColonPosition(firstBytes); p >= 0 {
city = data[head : head+uint64(p)]
head = head + uint64(p) + 1
} else {
for i := head + 8; i < uint64(len(data)); i += 8 {
u := *(*uint64)(unsafe.Pointer(&data[i]))
// Look for the first semicolon.
if p = SemiColonPosition(u); p >= 0 {
// A semicolon was found, collect all bytes before it and
// advance head.
city = data[head : i+uint64(p)]
head = i + uint64(p) + 1
break
}
}
}
if city == nil {
break
}
shortKey := MakeShortKey(firstBytes, len(city))
u := *(*uint64)(unsafe.Pointer(&data[head]))
temp, adv := ParseTemp(u)
sum := m.Lookup(shortKey, city)
sum.Add(temp)
// Advance head.
head += adv
if head > scanPast {
break
}
}
}
const (
semiColonTest = 0x3B3B3B3B3B3B3B3B
)
// SemiColonPosition returns the position of the byte within u that represents a
// semicolon character in ASCII. If a semicolon byte is not present, it returns
// -1.
func SemiColonPosition(u uint64) int {
// See "determine if a word has a byte equal to n", from "Bit Twiddling
// Hacks",
// https://graphics.stanford.edu/~seander/bithacks.html.
b := u ^ semiColonTest
b = (b - 0x0101010101010101) & (^b & 0x8080808080808080)
if b == 0 {
return -1
}
// The first bit of each byte in b that matches a semicolon character will
// be set. So we can count the trailing zeros (on a little-endian machine)
// to find the position of the first semicolon.
z := bits.TrailingZeros64(b)
// Divide by 8.
return z >> 3
}
const (
shift1 = 8 * 1
shift2 = 8 * 2
shift3 = 8 * 3
shift4 = 8 * 4
charMask0 = uint64(255)
charMask1 = uint64(255) << shift1
charMask2 = uint64(255) << shift2
charMask3 = uint64(255) << shift3
charMask4 = uint64(255) << shift4
dot1 = uint64('.') << 8
dot2 = uint64('.') << 16
)
func ParseTemp(u uint64) (_ Temp, advance uint64) {
// Gather the key and fetch the corresponding record. We can do this without
// scanning the line because there are only four possible sequences for
// the temperature. The valid formats are:
//
// 0.0
// 00.0
// -0.0
// -00.0
//
// We use the limited locations of semicolons and minus characters to avoid
// conditional expressions and loops.
switch {
case (u & charMask1) == dot1:
// Case: "0.0".
ones := (u&charMask0 - '0') * 10
tenths := u&charMask2>>shift2 - '0'
// Advance past the newline, which is the fourth character.
return Temp(ones + tenths), 4
case (u & charMask2) == dot2:
// Case: "00.0" and "-0.0".
v0 := u & charMask0
tens := (v0 - '0') * 100
ones := (u&charMask1>>shift1 - '0') * 10
tenths := u&charMask3>>shift3 - '0'
// neg is 1 if the first character is the minus charater, and 0
// otherwise.
//
// NOTE: The Go compiler eliminates jumps when using this form of
// conditional.
var neg uint64
if v0 == '-' {
neg = 1
}
// Clear tens if there was a minus character in that position.
tens = tens &^ -neg
// Add the ones and tenths digits.
temp := ones + tenths
// Add the tens digit.
temp += tens
// Negate the value if we found a minus character.
//
// See "conditionally negate a value without branching", from "Bit
// Twiddling Hacks",
// https://graphics.stanford.edu/~seander/bithacks.html.
temp = (temp ^ -neg) + neg
// Advance past the newline, which is the fifth character.
return Temp(temp), 5
default:
// Case: "-00.0".
tens := (u&charMask1>>shift1 - '0') * 100
ones := (u&charMask2>>shift2 - '0') * 10
tenths := u&charMask4>>shift4 - '0'
t := int16(tens + ones + tenths)
t *= -1
// Advance past the newline, which is the sixth character.
return Temp(t), 6
}
}
const (
// tableSize is the size of the table in a SummaryMap.
tableSize = 1 << 25
// offset64 and prime64 are taken from fnv.go
offset64 = 14695981039346656037
prime64 = 1099511628211
)
type ShortKey uint64
// MakeShortKey returns the given uint64 key truncated length p. All remaining
// bytes will be zeroed.
func MakeShortKey(u uint64, p int) ShortKey {
if p >= 8 {
return ShortKey(u)
}
var m uint64
m = 1<<(p<<3) - 1
return ShortKey(u & m)
}
func (s ShortKey) TableIndex() uint64 {
// Compute a simple hash based on FNV.
var h uint64
h = offset64
h ^= uint64(s)
h *= prime64
// Compute the modulus of the hash with the table size.
return h & (tableSize - 1)
}
// SummaryMap is a map from a ShortKey to a Summary linked list.
type SummaryMap struct {
table [tableSize]*Summary
keys []string
}
// Keys returns all the keys in the map, as strings.
func (m *SummaryMap) Keys() []string {
return m.keys
}
// LookupExisting returns the Summary in the map associated with the key. If
// there is no summary matching the key, it returns nil.
func (m *SummaryMap) LookupExisting(sk ShortKey, key string) *Summary {
s := m.table[sk.TableIndex()]
for s != nil {
if sk == s.shortKey && (len(key) <= 8 || key == s.key) {
return s
}
s = s.next
}
// The summary was not found.
return nil
}
// Lookup returns the Summary in the map associated with key. If one does not
// exist, a new one is added to the map and returned.
//
// The given key must be non-empty.
func (m *SummaryMap) Lookup(sk ShortKey, key []byte) *Summary {
idx := sk.TableIndex()
s := m.table[idx]
last := s
for s != nil {
// The Go compiler does not allocate in this special case of the string
// cast. See:
// https://github.com/golang/go/blob/e9b3ff15/src/bytes/bytes.go#L19
if sk == s.shortKey && (len(key) <= 8 || string(key) == s.key) {
return s
}
last = s
s = s.next
}
// The summary was not found. Allocate a string for the key, and add a new
// summary to the map.
s = &Summary{
key: string(key),
shortKey: sk,
min: math.MaxInt16,
max: math.MinInt16,
}
if last != nil {
last.next = s
} else {
m.table[idx] = s
}
m.keys = append(m.keys, s.key)
return s
}
// Temp represents a temperature, stored as an integer 10x the temperature.
type Temp int16
// AsFloat returns the temperature as a float64.
func (t Temp) AsFloat() float64 {
return float64(t) / 10.0
}
// TempSum represents a sum of temperatures, stored as an integer 10x the
// temperature.
type TempSum int64
// AsFloat returns the temperature as a float64.
func (t TempSum) AsFloat() float64 {
return float64(t) / 10.0
}
// Summary summarizes all temperature recordings for a given key.
type Summary struct {
key string
shortKey ShortKey
next *Summary
sum TempSum
count uint32
min Temp
max Temp
}
// Add adds a new temperature to the summary.
func (r *Summary) Add(t Temp) {
r.min = min(r.min, t)
r.max = max(r.max, t)
r.sum += TempSum(t)
r.count++
}
// Merge merges other with the Summary.
func (r *Summary) Merge(other *Summary) {
r.min = min(r.min, other.min)
r.max = max(r.max, other.max)
r.sum += other.sum
r.count += other.count
}
// Min returns the minimum temperature as a float64.
func (r Summary) Min() float64 {
return r.min.AsFloat()
}
// Max returns the maximum temperature as a float64.
func (r Summary) Max() float64 {
return r.max.AsFloat()
}
// Avg returns the mean temperature as float64.
func (r Summary) Avg() float64 {
return r.sum.AsFloat() / float64(r.count)
}
// /////////////////////////////////////////////////////////
// Tests
// /////////////////////////////////////////////////////////
func TestParseTemp() {
type testCase struct {
input []byte
expectedTemp float64
expectedAdvance uint64
}
testCases := []testCase{
{[]byte("0.0"), 0, 4},
{[]byte("0.1"), 0.1, 4},
{[]byte("0.5"), 0.5, 4},
{[]byte("0.9"), 0.9, 4},
{[]byte("1.2"), 1.2, 4},
{[]byte("5.5"), 5.5, 4},
{[]byte("9.9"), 9.9, 4},
{[]byte("-1.2"), -1.2, 5},
{[]byte("-5.5"), -5.5, 5},
{[]byte("-9.9"), -9.9, 5},
{[]byte("13.2"), 13.2, 5},
{[]byte("56.5"), 56.5, 5},
{[]byte("98.9"), 98.9, 5},
{[]byte("-13.2"), -13.2, 6},
{[]byte("-56.5"), -56.5, 6},
{[]byte("-98.9"), -98.9, 6},
}
for _, tc := range testCases {
u := *(*uint64)(unsafe.Pointer(&tc.input[0]))
temp, adv := ParseTemp(u)
if temp.AsFloat() != tc.expectedTemp {
panic(fmt.Sprintf("expected temp %d, got %d", tc.expectedTemp, temp.AsFloat()))
}
if adv != tc.expectedAdvance {
panic(fmt.Sprintf("expected advance %d, got %d", tc.expectedAdvance, adv))
}
}
}
func TestSemiColonPosition() {
type testCase struct {
input []byte
expected int
}
testCases := []testCase{
{[]byte("abcdefgh"), -1},
{[]byte(";bcdefgh"), 0},
{[]byte("a;cdefgh"), 1},
{[]byte("a;cd;fgh"), 1},
{[]byte("a;;;;;;;"), 1},
{[]byte("ab;defgh"), 2},
{[]byte("abc;efgh"), 3},
{[]byte("abcd;fgh"), 4},
{[]byte("abcde;gh"), 5},
{[]byte("abcdef;h"), 6},
{[]byte("abcdef;;"), 6},
{[]byte("abcdefg;"), 7},
{[]byte("abcdefgh;"), -1},
}
for _, tc := range testCases {
i := *(*uint64)(unsafe.Pointer(&tc.input[0]))
r := SemiColonPosition(i)
if r != tc.expected {
panic(fmt.Sprintf("%q: expected %d, got %d", tc.input, tc.expected, r))
}
}
}
func TestShortKey() {
type testCase struct {
input []byte
p int
expected []byte
}
testCases := []testCase{
{[]byte("a;cdefgh"), 1, []byte("a")},
{[]byte("ab;defgh"), 2, []byte("ab")},
{[]byte("abc;efgh"), 3, []byte("abc")},
{[]byte("abcd;fgh"), 4, []byte("abcd")},
{[]byte("abcde;gh"), 5, []byte("abcde")},
{[]byte("abcdef;h"), 6, []byte("abcdef")},
{[]byte("abcdefg;"), 7, []byte("abcdefg")},
{[]byte("abcdefgh"), 8, []byte("abcdefgh")},
{[]byte("abcdefghi"), 9, []byte("abcdefgh")},
}
for _, tc := range testCases {
u := *(*uint64)(unsafe.Pointer(&tc.input[0]))
r := MakeShortKey(u, tc.p)
e := *(*ShortKey)(unsafe.Pointer(&tc.expected[0]))
if r != e {
panic(fmt.Sprintf("%q: expected %d, got %d", tc.input, tc.expected, r))
}
}
}