Version: 2023.1
언어: 한국어

JobsUtility.ThreadIndexCount

매뉴얼로 전환
public static int ThreadIndexCount ;

설명

Returns the maximum number of job workers that can work on a job at the same time.

The job system creates a number of job worker threads no greater than the number of logical CPU cores for the platform. However, because arbitrary threads can execute jobs via work stealing, the job system allocates extra workers which act as temporary job worker threads. JobsUtility.ThreadIndexCount represents the maximum number of job worker threads plus the temporary workers that the job system ever uses. As such, this value is useful for allocating buffers which should be subdivided evenly between job workers because JobsUtility.ThreadIndex and Unity.Collections.LowLevel.Unsafe.NativeSetThreadIndex never return a value greater than JobsUtility.ThreadIndexCount.