Luke Horsley

Results 3 issues of Luke Horsley

``` void Main() { var max = 999999; var nums = Enumerable.Range(0, max + 1).ToArray(); Console.WriteLine(nums.ContainsS(max)); Console.WriteLine(nums.Contains(max)); } ``` Outputs > False > True Or another more simple example: ```...

I am currently using a compute shader to write to a buffer, I was previously using a `CpuAccessibleBuffer` but from the documentation this may be removed from Vulkano in future...

type: enhancement
status: workable

We currently make use of auto-instrumentation via the activity compatibility (our code all uses ActivitySource everywhere) and we have a situation where we'd like to create a new root span...