-
Hello,
I have an application that is currently running with CPU. How can I make it GPU supported? I want it to do the calculations on the GPU. Or there may be a code sample that will generate a ran…
-
Dear ILGPU Team,
Please analyze and run the following code (ILGPU 1.3.1, Release config, x64 Windows):
```
using ILGPU;
using ILGPU.Runtime;
using ILGPU.Runtime.Cuda;
const int NUM_VALUES = …
-
Is there a similar function to thrust::fill(stream, arrayStart, arrayEnd, -1) Thanks very much
-
Hi, Im enjoying GPGPU with this amazing library !
I have a question.
Shouldn't I use pointer in ILGPU?
No problem to trick the ILGPU into using ```long``` instead of ```IntPtr``` or ```nint``` ?
…
-
I am using your masterpiece very well.
If I had the ability, I would be able to help with anything, but in reality, I only write issue like this.
ILGPU's CuFFT example code is as follows:
(\Samp…
-
I added ILGPU to a WPF project in Visual Studio, however when creating a new Context the only device that appears is the CPU accelerator (when CUDA should be there too). Since there does not seem to b…
-
-
I'm trying to migrate my library to the new (beta) version of ILGPU library. The `ArrayView2D` and related types are different now - we need to specify `Stride2D.DenseX` or `DenseY`. My data at CPU ar…
-
Hi, I am new to computing on GPUs and Cuda. I am trying to make a basic neural network kernel just to experiment with CUDA. However, I have an issue where I am unable to get correct value from code.
…
-
Hi - great library!
I was a bit surprised to not find any "async" methods in the API.
If my CPU thread is only waiting to synchronize, I'd want to do it asynchronously (without blocking the thread).…