Christoph Ortner

Results 279 comments of Christoph Ortner

If I already have the full Anaconda distribution, then `Conda.jl` still tries to install miniconda: ``` julia> Conda.add("pyamg") INFO: Downloading miniconda installer ... ``` Is this intended behaviour - why...

It would also be really useful if there could be some examples how to setup `build.jl` to choose install a Python dependency correctly, i.e., using the existing installation if it...

Yes - I looked at PyCall. the file is about 300 lines, and given enough time I could probably dissect it. I am more looking for a ``` if has_anaconda_installation()...

thanks. so I could go the other way round, use ``` try pyimport_conda("", "") catch run(`conda install some package`) end ``` that way, if the package is already installed, I...

@stevengj Thank you and sorry for missing that.

> It could be that avoiding the dynamic lookup ju.LJ.energy helps Is there a way to avoid this regardless of where/how `energy` is defined? In practise I'll have a module...

I am using `Einsum.jl` for now, which works in-place (`MArrays`) but not with `SArrays`, which is ok for now. My concern still is that `Einsum.jl` kind of seems semi-abandoned with...

> What's the error for StaticArrays here? Is it permutedims? ```Julia using TensorOperations, StaticArrays a = @SVector rand(3) b = @SMatrix rand(3, 3) c = @MVector zeros(3) @tensor c[i] =...

and the allocating version: ```Julia @tensor d[i] := b[i, j] * a[j] ``` leads to ``` ERROR: MethodError: no method matching similar_from_indices(::Type{Float64}, ::Tuple{Int64}, ::StaticArrays.SArray{Tuple{3,3},Float64,2,9}, ::SVector{3,Float64}, ::Type{Val{:N}}, ::Type{Val{:N}}) Closest candidates are:...