Daniil
Daniil
### Question private static void test(Index1D d, ArrayView view) { view[-d ] = 3/d; /// error } public static unsafe void Main(string[] args) { var ctx = Context.Create (c=>c.AllAccelerators().EnableAlgorithms().Optimize(OptimizationLevel.O2).Inlining(InliningMode.Aggressive)); var...
### Describe the bug public static void testKernelSwap64(Index1D index, ArrayView arr1){} // OK public static void testKernelSwap1024(Index1D index, ArrayView arr1){ int[] arr = new int[1024];} // OK public static void...
### Describe the bug When defining local arrays int[] arr = new int[1_000_000], it creates PTX code that is 1,000,000 lines long with compilation time exceeding 10 minutes and consuming...
### Question How is the data arranged? Where is x,y located - [x,y] or [y,x]? I don't use this class at all; instead, I create my own wrapper over ArrayView1D,...