You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a big job. This is an optimization of the sharing memory by communicating method.[1]
When a struct (not a pointer) above a GO_NUMA_MIGRATE size (determined at compile time) is sent across a channel the slice should be relocated to run on a local NUMA node.
For slices, I think we need a moving GC to br able to support this kind of
NUMA migration (the runtime need to preserve the shared memory semantics,
so it needs to handle the case where the sender still holds a reference to
the underlying array.)
mikioh
changed the title
NUMA optimization for channels
runtime: NUMA optimization for channels
Aug 24, 2015
This is a big job. This is an optimization of the sharing memory by communicating method.[1]
When a struct (not a pointer) above a GO_NUMA_MIGRATE size (determined at compile time) is sent across a channel the slice should be relocated to run on a local NUMA node.
[1] http://blog.golang.org/share-memory-by-communicating
The text was updated successfully, but these errors were encountered: