-
I get the following error when trying to `using Preconditioners` on v0.7.0.
```
LoadError: ArgumentError: Package Preconditioners does not have IncompleteSelectedInversion in its dependencies
```…
-
I find `Zygote` supports complex number AD, I like it more now! e.g.
```julia console
julia> gradient(imag, x)
((re = nothing, im = 1),)
```
But I have several questions,
## Question 1:
Why it …
-
Are you planning to implement lazy addition `Add(A, B)` similar to `Mul(A, B)`? By that I mean a lazy object such that `mul!(y, Add(A, B), x, α, β)` lowers into
```julia
lmul!(β, y)
mul!(y, A, x…
-
When trying to build ngraph with gcc version 7 and icc version 18 I get the following template mismatch error.
cd /home/hpc/pr28fa/di72giz/NGRAPH/ngraph/build/src/ngraph && /lrz/sys/compilers/gcc/7…
-
I think it would make sense to create a process that automatically creates the parameters for the adjoint analysis from the primal parameters.
That would reduce the amount of settings that need to …
-
Dear all,
Sorry for bothering. Could you please help me install libmesh?
I am using Windows 10 64 bit, Windows Subsystem Linux, Ubuntu 18.04. I have done:
```
git clone git://github.com/lib…
yw5aj updated
5 years ago
-
On Windows with MinGW 64bit memory usage problem.
This will be ok...
```C++
//memory ok
//5MB
aVector yy=x*2;
for(int q=0;q
-
The logpdf function in the build_loss_objective is not set up properly.
What should take place? For a simple demo model like Lotka-Volterra or Lorenz and ONE DATASET, fit_mle should fit a MvNormal…
-
Isn’t a FunctionSpace (almost by definition) just a Space with evaluation defined (that respects the linearity of the space)?
It almost feels like `Fun` is misnomer, as the space could be something…
-
I just noticed this while trying to fix WoodburyMatrices.jl for v0.7. Here's a reduced example of the behavior:
```julia
julia> struct Woodbury{Vt} Woodbury(V::AbstractMatrix) = Woodbury{typeof(V…