MoFtZ
MoFtZ
hi @rhoadscm. It looks like the `Transform` method in `net8.0` now makes use of an intrinsic. - [net6.0 source](https://github.com/dotnet/runtime/blob/v6.0.0/src/libraries/System.Private.CoreLib/src/System/Numerics/Vector3.cs#L471) - [net8.0 source](https://github.com/dotnet/runtime/blob/v8.0.0/src/libraries/System.Private.CoreLib/src/System/Numerics/Vector3.cs#L507) In `net8.0`, the implementation makes use of `AsVector128()`,...
ILGPU will currently read the MSIL code for most methods, and transform that into GPU code. However, ILGPU will ignore methods in the `System.Runtime` and `System.Reflection` namespaces, because these typically...
`ptxas error : Entry function 'Kernel_UniqueKernel' uses too much shared data (0x42000 bytes, 0xc000 max)`
hi @l278943941 The code you provided does not compile - it missing some definitions. And even if I got it to compile, it would require additional changes, such as adding...
> [@MoFtZ](https://github.com/MoFtZ) my project https://github.com/l278943941/SharpOsci/tree/master @l278943941 that is not what I meant. I have downloaded your project and gotten it to compile, but running the project does not reproduce the...
Thanks for the extra info @l278943941. I replaced the 3 calls to `FastExp` with `XMath.Exp`. When I ran the program, there were no issues. Then, I noticed that the calls...
@no4ni I had some trouble compiling your code. Looks like several definitions are missing. e.g. `gpuThreshold1` and `image`. However, I tried looking at the PTX that was generated in `OptimizationLevel.O1`...
OK, I have finally been able to reproduce the issue. As mentioned, it only occurs when using the `OptimizationLevel.O1` e.g. running in Release configuration. It appears to be a problem...
The maintainer for that section of code has been notified of the issue. They will take a look when they are available.
@m4rs-mt Looks like `xunit.runner.visualstudio` now requires `net8.0` or `net472`. This means it cannot be used while we support `net6.0` and `net7.0`. We could conditionally include `xunit.runner.visualstudio`, since it is for...