Artem Solod
Artem Solod
> @fatteneder Hello, I'm new to Makie and was looking for this show/hide feature. This pull request seems to be exactly what I'm looking for. Is this pull request going...
`Zip` expects `Transducer`s in its arguments and gives a new combined transducer. So the use case is something like this ``` 1:10 |> Zip(Map(x -> x + 1), Map(x ->...
Thank you for the answer! `AllocArrays.jl` looks interesting, will try it out. I agree the approach looks unsafe but I find it would help my workflow and speed up running...
There doesn't seem to be a specific flag to call `julia` with for performing this task. However, using a suggestion from https://discourse.julialang.org/t/syntax-validation-of-a-julia-file/55946 the following script should do the trick. `validatesyntax(fname)...
Hi, @MikeMirzayanov, is this method of checking syntax what you are looking for? Or is there anything else? Btw, that command can be used as a one-liner, i.e. `julia -e...
Could you please share how you measure RAM usage? Regarding linebreaks, does the following version does what you want? ``` using Base: println Base.println(io::IO, xs...) = print(io, xs..., "\r\n") (a,b,c)...
I am also facing this issue when using julia in `backward()` call on gpu (and it only happens when torch uses gpu). Something that I have noticed: - When there...