Stamatis Vretinaris
Stamatis Vretinaris
regarding q2, if one runs the code with deactivated bounds checking, should you regain performance?
I can confirm the same behaviour. I have a `.JuliaFormatter.toml` sitting at my parent dir of my package (next to the `Project.toml`) but the LanguageServer is not seeing any of...
Emacs initializes a project (and sees the parent directory) and activates the LS. I don't know what that would mean for your question. As a current fix I just copied...
I don't know if it helps but for anything that I have used until now, replacing `@threads` with `@batch` was working and usually you can get something non allocating
I forked the repo and I added ``` using Polyester ``` before the function `add_loop` in the file `/src/ParallelKernel/parallel.jl` . I replaced the `@threads` with `@batch` and it compiled just...
> Out of curiosity, how much does `@time using ParallelStencil` and the compile time of the `@parallel` kernels increase with Polyester.jl? I will post some timings later about the `@time...
So for my naive implementation and the above mentioned machine I get: ``` (@v1.10) pkg> activate ../.. Activating project at `~/ParallelStencil.jl` In [2]: @time using ParallelStencil 0.193122 seconds (110.22 k...
So once I change the files should I report the initial timing or after it compiled one time, I exit the julia repl, open again and then time it? Excume...
@luraess @albert-de-montserrat thanks for the input. I will try to do those things