Michael Abbott

Results 1316 comments of Michael Abbott

Both the top example and the Multiplier one work on Yota 0.8 and Julia 1.8, which is great. On Julia nightly, something seems to go wrong, perhaps of interest (and...

Great, thanks. Then I mark this as closed.

BTW tagbot did not catch that, https://github.com/dfdx/Yota.jl/releases lacks 0.7.4

Some of the proposed benefits are already available from the very lightweight GPUArraysCore.jl (which did not exist when the issue was opened). You can test `x isa AbstractGPUArray`, and call...

I think being explicit is a virtue of this package. Automatically inserting `__` as the first (or should it be last?) argument would also make it impossible to chain functions...

Ah right, there's a way... and I guess `|> g(x)(__) |> scatter` would likewise be the most explicit way to write my example today. Do you have examples of where...

One question is what to do with macros, it seems that this should work, since it doesn't look like a function call: ```julia @_ data |> @view map(_.re, __)[1:3] ```...

Note that such examples won't work very well in pipelines -- I'm unsurprised by `(0 |> string)` here but was a little surprised by `(data |> cond)`: ``` julia> :(data...

I hadn't realised that keywords worked at all, but they do, and may even be useful: ```julia @_ sort(bars, by=-_.x) ``` Perhaps `@_ f(_=_+1)` should remain an error, but apart...