Popularity
2.3
Growing
Activity
2.2
-
22
5
6

Programming language: Go
License: MIT License
Tags: Miscellaneous     Strings    
Latest version: v1.0.0

numa alternatives and similar packages

Based on the "Strings" category.
Alternatively, view numa alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of numa or a related project?

Add another 'Strings' Package

README

NUMA

Build Status GoDoc codecov Go Report Card

NUMA is a utility library, which is written in go. It help us to write some NUMA-AWARED code.

example gist:

package main

import (
    "github.com/lrita/numa"
)

type object struct {
    X int
    _ [...]byte // padding to page size.
 }

var objects = make([]object, numa.CPUCount())

func fnxxxx() {
    cpu, node := numa.GetCPUAndNode()
    objects[cpu].X = xx
}