Skip to content

Go package providing information about the number of CPUs in the system

License

Notifications You must be signed in to change notification settings

tklauser/numcpus

Folders and files

NameName
Last commit message
Last commit date
Mar 19, 2025
Dec 13, 2018
Feb 26, 2025
Sep 14, 2021
Jan 19, 2022
May 4, 2020
Mar 5, 2025
Mar 5, 2025
May 22, 2024
Jan 5, 2024
May 23, 2024
May 22, 2024
May 22, 2024
Jan 5, 2024
Oct 4, 2024
Jan 5, 2024
Jan 11, 2022

Repository files navigation

numcpus

Go Reference GitHub Action Status

Package numcpus provides information about the number of CPUs in the system.

It gets the number of CPUs (online, offline, present, possible, configured or kernel maximum) on Linux, Darwin, FreeBSD, NetBSD, OpenBSD, DragonflyBSD or Solaris/Illumos systems.

On Linux, the information is retrieved by reading the corresponding CPU topology files in /sys/devices/system/cpu.

On BSD systems, the information is retrieved using the hw.ncpu and hw.ncpuonline sysctls, if supported.

Not all functions are supported on Darwin, FreeBSD, NetBSD, OpenBSD, DragonflyBSD and Solaris/Illumos. ErrNotSupported is returned in case a function is not supported on a particular platform.

Usage

package main

import (
	"fmt"
	"os"

	"github.com/tklauser/numcpus"
)

func main() {
	online, err := numcpus.GetOnline()
	if err != nil {
		fmt.Fprintf(os.Stderr, "GetOnline: %v\n", err)
	}
	fmt.Printf("online CPUs: %v\n", online)

	possible, err := numcpus.GetPossible()
	if err != nil {
		fmt.Fprintf(os.Stderr, "GetPossible: %v\n", err)
	}
	fmt.Printf("possible CPUs: %v\n", possible)
}

References