Niklas Hackelberg

Results 23 issues of Niklas Hackelberg

This PR adds a weak extension for [JLArrays](https://github.com/JuliaGPU/GPUArrays.jl/tree/master/lib/JLArrays). These arrays are a CPU-reference-implementation of GPUArrays and allow for easier testing of GPU handling. The weak extension is structured similar to...

Hello, I stumbled over this difference between CPU and GPU arrays: ```julia julia> using JLArrays julia> using CUDA julia> a = rand(Float32, 1); b = rand(ComplexF32, 1); julia> promote_type(typeof(a), typeof(b))...

As requested by @vchuravy, this is a copy of my slack question: Hello, I'm running into an errors with KernelAbstractions.jl, atomic operations using Atomix.jl and complex numbers. Is it possible...

This PR (hopefully) closes #100. The goal of this PR is to seamlessly create either CPU or GPU plans depending on the given argument(s). At the bottom of this comment...

Hello, we stumbled over an issue with our UI tests after migrating to Gtk4.jl. In the tests we are creating a complex GUI that features multiple GtkCanvases, which we then...

When I comment out the finalizers as done in the first commit, I can't reproduce issue #99 anymore. But I am completely unsure why this works and if it has...

Hello, I've managed to produce another crash and find a MWE for it. The MWE tracks some state in a struct and can (re-)generate a `GtkNotebook` from its current state....

Hello @jwahlstrand, today I saw the release notes of the beta release of Julia version 1.12. One point that might be relevant for Gtk4 (or at least the GUI application...

Hello, I've recently noticed that GPUArrays don't define a `Base.hash` implementation and fallback to the default one. This requires one to `@allowscalar` which is slow and also means one has...