Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

SystemInfo.processorCount

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static var processorCount: int;
public static int processorCount;

Description

Number of processors present (Read Only).

This is number of "logical processors" as reported by the operating system, also commonly called as "number of hardware threads". Note that some CPUs have different amount of "physical cores" and "logical cores" (for example many Intel CPUs have 4 physical cores and 8 logical cores in so called "hyper threaded" fashion). This function reports the latter.

    // Prints "4" on a quad-core CPU.

print (SystemInfo.processorCount);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(SystemInfo.processorCount); } }