Axel Huebl
Axel Huebl
The tolerances seem to fail with MPI, maybe just need a small relaxation @cemitch99 ? ``` Errors while running CTest 485 - examples-fodo-vector-potential.py.analysis (Failed) 491 - examples-exact-quad-vector-potential.py.analysis (Failed) 512 -...
Something is still off with the Python tests. Besides the tolerance issues, they seem to run significantly longer than their app/executable counterparts? ``` ctest --test-dir build -R vector Start 481:...
@cemitch99 the three python run files are not yet 100% identical with the app inputs files, which should be the origin of the failing tests. I fixed the things I...
Thanks! If they run a bit on the longer end, let us add the `slow` label on these (in `CMakeLists.txt`).
Thank you to @lucafedeli88 for volunteering for this! :sparkling_heart:
Related to #1160, let us also add a section just for a concrete how-to to build the special case of an `rbend`
Rewriting the code to: https://fwd.gymni.ch/ycY4kq ```C++ double compute (double r) { double x = std::sqrt(r); double y = std::log(r); std::unordered_map rbc = reduced_beam_characteristics(x, y); return rbc["alpha_x"]; } ``` compiles but...
That's great! Yes that leak could be very noisy in our code. Added a unit test in #2376 for development.
Fix in #1179