コード例 #1
0
ファイル: ExecutionInfo.cs プロジェクト: Feinbube/hybridNet
 public void Execute(ComputeDevice computeDevice)
 {
     this.computeDevice = computeDevice;
     computeDevice.ParallelFor(fromInclusive, toExclusive, action);
 }
コード例 #2
0
ファイル: Scheduler.cs プロジェクト: Feinbube/hybridNet
 private static void execute(int fromInclusiveX, int toExclusiveX, int fromInclusiveY, int toExclusiveY, Action <int, int> action, ComputeDevice computeDevice)
 {
     computeDevice.ParallelFor(fromInclusiveX, toExclusiveX, fromInclusiveY, toExclusiveY, action);
 }