Lukas Hauertmann

Results 11 issues of Lukas Hauertmann

Sometimes `wait(kernel(...))` hangs up. MWE: ```julia using KernelAbstractions using CUDA, CUDAKernels using ProgressMeter @kernel function test_kernel(a::AbstractArray{T}) where {T} index = @index(Global) a[index] = T(1) end a = CuArray(zeros(Float32, 500, 500));...

**The bug** GPU memory is not freed (fast enough?) when performing a little memory requiring computation in parallel on multiple threads. **MWE** I came across this issue when using a...

bug

I get a segmentation fault when I am connected over `ssh -X` and try to display a plot via `Plots.jl` with the GR backend: ```julia using Plots; plot(rand(10)) ``` I...

The issue came up from #279 Right now, we assign an electric field vector to each grid point of the grid of the electric potential. The components of the vector...

bug
breaking

This came up in #285. The construction of a Torus is not entirely type stable as some parametric types of `Torus` depend on the values and not the types of...

Before the electric potential is calculated via SOR, the initial boundary conditions are applied onto the grid and some constant weights (needed in the SOR) are precalculated. This also happens...

performance

### ToDo: - [x] Support cylindrical coordinates - [x] Support Cartesian coordinates - [x] Support Depletion handling - [x] Add Documentation - [x] Add tests - [ ] Test it...

performance
new feature

Right now the ADL charge drift model is usually constructed from a configuration file. I think it would be nice to also have a constructor function for it, which takes...

good first issue
convenience

Right the user is able to define the world in the config file. Symmetries can be used there. For example mirror symmetries. The issue is that the symmetries might differ...

enhancement