Rami
Rami
Hello, First thanks for the package. There seems to be a bug in the following: ``` julia> linsolve(identity,rand(10)) ([-3.411259393663508e-16, -1.705629696831754e-16, -2.1320371210396926e-16, -1.3325232006498079e-17, -2.1320371210396926e-16, -6.822518787327016e-16, -4.264074242079385e-16, -6.822518787327016e-16, -3.411259393663508e-16, -2.1320371210396925e-17], ConvergenceInfo: no...
Hello, Thanks for finally supporting mutation in AD!! I am on a mac and on `julia 1.7` it seems that an example of this size will die (allocates a lot...
Hello, Consider the following example: ``` @everywhere struct SS1 v::Vector{Float64} m::Vector{Float64} end dSS=@DArray [SS1(rand(10),i*ones(10)) for i in 1:10] dSS2=@DArray [SS1(rand(10^6),i*ones(10)) for i in 1:10]; @time dSS[2].m @time dSS2[2].m; 0.004819 seconds...
Fixes issue #206 , please see the issue description for an explanation of the fix.
Hello, If the `pid` trying to create a `DArray` has to do enough work, we see a slow down. The work interferes with the asynchronous dispatch of work to the...
Hello, I found this when I was puzzled by a [discourse question](https://discourse.julialang.org/t/strange-memory-allocation-with-distributedarrays/38325). The function `restrict_indices` (called on line 824 in darray.jl, for example, couldn't figure out how to reference here),...
Hello, First, thank you for a great package! I have had an issue with `copy` of `DArray` when connected in `master_slave` topology. ```julia julia> addprocs(2,topology=:master_slave) 2-element Array{Int64,1}: 2 3 julia>...
Hello, How do i limit the number of cores per node with the `LSFManager`? I would normally use `-R "span[ptile=...]"` but the option seems to be ignored if passed as...
Hello, If the user has bothered to pass an explicit distribution, respect it in `similar` arrays. This prevents behavior as below: ``` julia> dd=drand((10,10),workers(),[2,1]); julia> ds=similar(dd); julia> ds.indices 1x2 Array{Tuple{UnitRange{Int64},UnitRange{Int64}},2}:...
Hello all, I am using Jupyter 4.2.0, I execute this command in Julia 0.4 and 0.5: ```julia ;sustripsrc.rsf@ sustrip: subcalls.c: efopen: fopen failed ``` Whereas if I change the kernel...