Simen Gaure
Simen Gaure
> semantically equivalent but the first one can be faster if you have many CPUs? If that's the case, what is the motivation to not parallelize xf1 |> xf2 and...
That's fine. My idea was to mirror the simple Threads.@threads specification (or openmp parallel for) available for iterators (with static or dynamic load-balancing), with an optional builtin "dethreading" somewhere downstream...
It’s fine that it’s possible to parallelize code with various tools. I wondered if it could be done directly with special transducers, but it seems to be easier to do...
There are easy ways in julia to parallelize loops, and Threads.@spawn macro inheriting from Cilk is great for various parallellizations, including partitioning of iterators for cutting them up in suitable...
Perhaps there should be a possibility for the user to tell the compiler there's no aliasing? A `@noalias` macro applied to a method, or a loop? I can predict disastrous...
Here's some more info. There's a long time since I debugged kernel stuff, but some printk's here and there reveals the following. The oops, a zero pointer reference, occurs in...