Update Job

This commit is contained in:
2026-02-21 17:20:51 +09:00
parent 4f964b2d2a
commit 7367826978
23 changed files with 511 additions and 276 deletions

View File

@@ -25,6 +25,20 @@ public interface IJobParallelFor
void Execute(int loopIndex, int threadIndex);
}
/// <summary>
/// Represents a job that performs the same operation for a set of items, executed in parallel.
/// </summary>
public interface IJobParallel
{
/// <summary>
/// Executes an operation over a specified range, optionally associating the execution with a particular thread index.
/// </summary>
/// <param name="startIndex">The zero-based index at which to begin the operation.</param>
/// <param name="endIndex">The zero-based index at which to end the operation.</param>
/// <param name="threadIndex">The index of the thread executing the job, useful for thread-specific operations.</param>
void Execute(int startIndex, int endIndex, int threadIndex);
}
public static class IJobExtensions
{
public static void Run<T>(this ref T job, int threadIndex)
@@ -37,11 +51,20 @@ public static class IJobExtensions
public static class IJobParallelForExtensions
{
public static void Run<T>(this ref T job, int totalIterations, int threadIndex)
where T : struct, IJobParallelFor
where T : struct, IJobParallelFor
{
for (var i = 0; i < totalIterations; i++)
for (int i = 0; i < totalIterations; i++)
{
job.Execute(i, threadIndex);
}
}
}
public static class IJobParallelExtensions
{
public static void Run<T>(this ref T job, int totalIterations, int threadIndex)
where T : struct, IJobParallel
{
job.Execute(0, totalIterations, threadIndex);
}
}