DLarby
DLarby
Change to stl binary/ascii type detection. Removed check on value of final attr bits, which caused a failure to parse for me, incorrectly treating it as an ascii type stl....
Enzyme autodiff fails to work with LinearSolve. **Minimal Reproducible Example 👇** ```julia using Enzyme using LinearSolve function testls(A, b, u) oa = OperatorAssumptions(true, condition = LinearSolve.OperatorCondition.WellConditioned) prob = LinearProblem{true}(A, b,...
MWE: ```julia using Enzyme using LinearAlgebra struct TestCache2 J::Array{Float64, 3} M::Array{Float64, 2} end function test_func_1(cache::TestCache2, f::Float64) J = view(cache.J, 1:3, 1:2, 1) mul!(cache.M, J', J, f, 1.0) cache.M[1, 1] end...