James Schloss
James Schloss
I was just getting used to Impero dev again (trying to turn it into a general symbolic equation tool). I completely forgot what I was trying to do with nary...
Right, tests are passing locally, but still a bunch of small things to do: * [x] Rebase / squash * [ ] Cleanup (make sure the workflows rely on the...
If the size of the array is ~ 10, then `a' * a` works fine. ``` julia> using oneAPI julia> rand_array = rand(Float32, 10, 2); julia> one_array = oneArray(rand_array); julia>...
Right now, Fable is reliant on a lot of fractally concepts (Chaos game, Fractal Flame method, etc). This does not need to be the case, and it is better to...
I want to ... * [ ] Add an `@stamp` function that works similarly to an `@synchronize` in KernelAbstractions. This way, the output does not happen at a fixed stage...
An attempt to minimize the number of function for Fable by compressing them into a `call_set` variable. Note that this actually does not help with the LLVM-level branching issue. Related...
Right, so simply put. I want the following code to work: ``` using CUDA f(x) = x+1 g(x) = x*2 function call_fxs!(fxs) x = 1 for i = 1:length(fxs) x...
I am posting this as a "bug", butI am not sure if it's fixable. For clarity, the actual error with JuliaGPU/CUDA.jl#2450 is due to the fact that we can't iterate...
Nothing works when using Julia in threaded mode: ``` [leios@noema Fable.jl]$ julia _ _ _ _(_)_ | Documentation: https://docs.julialang.org (_) | (_) (_) | _ _ _| |_ __ _...
I had a request to do #429 for fastmath, so here is my attempt. #431 is also related 2 issues: 1. My only issue is that I don't know what...