Skip to content

Commit

Permalink
support for 1.9 bit counts
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Fitzgerald committed Aug 28, 2017
1 parent 30284c1 commit ad0865f
Show file tree
Hide file tree
Showing 6 changed files with 116 additions and 0 deletions.
1 change: 1 addition & 0 deletions popcnt_amd64.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// +build !go1.9
// +build amd64,!appengine

package bitset
Expand Down
1 change: 1 addition & 0 deletions popcnt_amd64_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// +build !go1.9
// +build amd64,!appengine

// This file tests the popcnt funtions
Expand Down
1 change: 1 addition & 0 deletions popcnt_cmp_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// +build !go1.9
// +build amd64,!appengine

// This file tests the popcnt funtions
Expand Down
1 change: 1 addition & 0 deletions popcnt_generic.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// +build !go1.9
// +build !amd64 appengine

package bitset
Expand Down
56 changes: 56 additions & 0 deletions popcnt_go18_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
// This file tests the popcnt funtions

package bitset

import (
"testing"
)

func TestPopcntSliceGo(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
res := popcntSliceGo(s)
const l uint64 = 27
if res != l {
t.Errorf("Wrong popcount %d != %d", res, l)
}
}

func TestPopcntMaskSliceGo(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntMaskSliceGo(s, m)
const l uint64 = 9
if res != l {
t.Errorf("Wrong mask %d != %d", res, l)
}
}

func TestPopcntAndSliceGo(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntAndSliceGo(s, m)
const l uint64 = 18
if res != l {
t.Errorf("Wrong And %d != %d", res, l)
}
}

func TestPopcntOrSliceGo(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntOrSliceGo(s, m)
const l uint64 = 50
if res != l {
t.Errorf("Wrong OR %d != %d", res, l)
}
}

func TestPopcntXorSliceGo(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntXorSliceGo(s, m)
const l uint64 = 32
if res != l {
t.Errorf("Wrong OR %d != %d", res, l)
}
}
56 changes: 56 additions & 0 deletions popcnt_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
// This file tests the popcnt funtions

package bitset

import (
"testing"
)

func TestPopcntSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
res := popcntSlice(s)
const l uint64 = 27
if res != l {
t.Errorf("Wrong popcount %d != %d", res, l)
}
}

func TestPopcntMaskSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntMaskSlice(s, m)
const l uint64 = 9
if res != l {
t.Errorf("Wrong mask %d != %d", res, l)
}
}

func TestPopcntAndSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntAndSlice(s, m)
const l uint64 = 18
if res != l {
t.Errorf("Wrong And %d != %d", res, l)
}
}

func TestPopcntOrSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntOrSlice(s, m)
const l uint64 = 50
if res != l {
t.Errorf("Wrong OR %d != %d", res, l)
}
}

func TestPopcntXorSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntXorSlice(s, m)
const l uint64 = 32
if res != l {
t.Errorf("Wrong OR %d != %d", res, l)
}
}

0 comments on commit ad0865f

Please sign in to comment.