internal static void Index3EntryPointKernel( Index3 index, ArrayView <int> output, Index3 extent) { var linearIndex = index.ComputeLinearIndex(extent); output[linearIndex] = linearIndex; }
public void InstanceKernel(Index3 index, ArrayView <int> output, Index3 extent) { var linearIndex = index.ComputeLinearIndex(extent); output[linearIndex] = NestedFunction(linearIndex); }