ComputeSharp
ComputeSharp copied to clipboard
Minor errors in the sample code
The code in file ComputeSharp/samples/ComputeSharp.Benchmark/Blas/BlasHelpers.cs at line 97:
int x_offset = (ThreadIds.X * n * p) + (ThreadIds.Y * m);
Should it be:
int x_offset = (ThreadIds.X * n * m) + (ThreadIds.Y * m);
That is, change 'p' to 'm'