Ryan Stoner
Ryan Stoner
Document behavior of backing arrays when using sparse arrays. Document #373
Enzyme sometimes incorrectly returns zeros for sparse arrays. `using Enzyme a=sparse([2.0]); da=sparse([0.0]); f(a)=sum(a); Enzyme.autodiff(Reverse,f,Const,Duplicated(a,da))` Returns da as a sparse array with 0 entries, but as per the Slack suggestion`da=sparse([0.0001])` returns...
A MWE of the issue I mentioned in the zoom call today: ``` a = [1.0] da = [0.0] function f(x); y = copy(x); return sum(y); end function g(x); y...
I can't install deal.II master using the intel compiler on TACC Stampede3 without it crashing. However, deal.II 9.5.2 compiles and installs without issue. This was first noticed in in https://github.com/geodynamics/aspect/issues/5594....
A modification to the visco_plastic material model to optionally set viscosities with lookup tables. These tables are used in place of temperature or pressure conditions by reading a column for...