Collin Wittenstein

Results 13 comments of Collin Wittenstein

This is the result of running ```julia # profiling solver = KrylovJL_GMRES(); # my implicit euler @profview for i in 1:500 my_implicit_euler(prob_op, dt, solver); end # ImplicitEuler @profview for i...

Note sure if this is relevant/related, but the same performance different can be seen using ``KrylovJL_BICGSTAB()`` for example. And ``KrylovJL_CG()`` gives an warning when using ``ImplicitEuler(linsolve = KrylovJL_CG())`` ```julia ┌...

> That should throw a better error.... I just had a similar problem (when not using Enzyme), where I also forgot to include the ``ndrange`` and got the following error:...