diff --git a/Misaki.HighPerformance.Test/Jobs/JobDispatchingJob.cs b/Misaki.HighPerformance.Test/Jobs/JobDispatchingJob.cs index d6d1a4d..daa49e5 100644 --- a/Misaki.HighPerformance.Test/Jobs/JobDispatchingJob.cs +++ b/Misaki.HighPerformance.Test/Jobs/JobDispatchingJob.cs @@ -28,7 +28,7 @@ internal struct JobDispatchingJob : IJobParallelFor data = data[loopIndex] }; - var handle = ctx.JobScheduler.ScheduleParallelFor(in innerJob, data[loopIndex].Length, 64); + var handle = ctx.JobScheduler.ScheduleParallelFor(in innerJob, data[loopIndex].Length, 64, ctx.ThreadIndex); handles.AddNoResize(handle); } }