crazy core pinning junk

This commit is contained in:
JackDoan
2026-08-03 10:51:37 -05:00
parent 42c937d86f
commit e04473f30b
9 changed files with 943 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build !linux
package cpupick
// readTopology has no sysfs to consult off Linux; the flat stand-in makes
// arrange's NUMA and SMT rules no-ops. Default is already nil off Linux
// (util.AllowedCPUs has no answer there) — this keeps the package compiling.
func readTopology(cpus []int) topology {
return flatTopology(cpus)
}