gonuma: A utility library for writing NUMA-aware Go applications. https://github.com/johnsonjh/gonuma/
Jeffrey H. Johnson 6019d4c25b Bunp dependencies | hace 3 años | |
---|---|---|
.github | hace 4 años | |
.deepsource.toml | hace 3 años | |
.fossa.yml | hace 4 años | |
.gitattributes | hace 3 años | |
.gitlab-ci.yml | hace 3 años | |
.gonuma_root | hace 4 años | |
.mergify.yml | hace 4 años | |
.whitesource | hace 4 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
SECURITY.md | hace 3 años | |
bitmask.go | hace 3 años | |
bitmask_test.go | hace 3 años | |
cov_report.sh | hace 3 años | |
dependabot.yml | hace 3 años | |
go.mod | hace 3 años | |
go.sum | hace 3 años | |
gonuma_license_test.go | hace 3 años | |
numa.go | hace 3 años | |
numa_linux.go | hace 3 años | |
numa_linux_amd64.s | hace 3 años | |
numa_linux_test.go | hace 3 años | |
numa_other.go | hace 3 años | |
numa_other.s | hace 3 años | |
numa_test.go | hace 3 años | |
vdso_linux_amd64.go | hace 3 años | |
vdso_linux_amd64_test.go | hace 3 años |
gonuma
is a Go utility library for writing NUMA-aware applications
package main
import (
gonuma "github.com/johnsonjh/gonuma"
)
type object struct {
X int
_ [...]byte // pad to page size
}
var objects = make(
[]object,
gonuma.CPUCount(),
)
func fnxxxx() {
cpu, node := gonuma.GetCPUAndNode()
objects[cpu].X = xx
}