2pt0

Results 7 comments of 2pt0

To add a little more context, I am trying to recreate [potential flow around a cylinder](https://en.wikipedia.org/wiki/Potential_flow_around_a_circular_cylinder). The solution should be symmetric about the cylinder. Here are some image that illustrate...

Neither have converged that the tolerance. The residual is decreasing in both cases for each Newton iteration, which is converging on solutions similar to the images above. Eventually GMRES gives...

Yes, that's true. I have been pursuing an approach that uses `disassemble()`. One difficulty, however, is that `disassemble()` necessarily consumes `self`. In my example this would prevent updating `self.a` with...

Hi. I am also interested in this. I'm wondering if a simpler solution is possible. Consider segregating MPI tests into their own test crate and using a test harness (check...

Not sure. It's desirable to have an interface like `cargo mpirun test`. The problem is that I believe Rust generates a binary for each test (or is it for each...

Thanks for the library! Is there a path forward to fix this or any obvious reasons why the parsing is failing?

I have very little experience with proc macros, but after a little research I've found that `serde`, e.g., provides a [`crate` attribute](https://serde.rs/container-attrs.html#crate). Though I can't find it documented, `bytemuck` also...