Jared Crean
Jared Crean
It seems we now require MPI 3, and had a build failure in the wild as a result: https://discourse.julialang.org/t/error-building-mpi-already-tried-setting-cc-fc/17817. In particular, that user reported the Ubuntu 16.04 package for OpenMPI...
I think the better solution is to add version checks to the files in `/deps` and the Julia source code that uses the generated constants. We have to do that...
> Is MPI3 really that unsupported Yes. The Blue Gene at my school still doesn't support all of MPI 2. HPC systems with custom MPI implementations may never update the...
I created a proof of concept for finding in what version of MPI a symbol first appears [here](https://github.com/JaredCrean2/MPISearch).
There is minimal reproducible example in `/users/creanj/lore/test_ma_quadratic`. The line the triggers the error `ma::runUniformRefinement(m)` in `test_init2.cc`. If you run ``` ./test_init2 circlemesh_linear.smb circle.smd` ``` a straight-sided mesh is uniformly refined...
I am finally getting back to this, and found a problem with the conversion to Bezier representation. The files are in `/users/creanj/lore/test_ma_quadratic2`. The domain is the unit circle, and I...
Thanks for the explanation. If `getPoint` does not return the coordinates of a mesh node, I am going to have to review a lot of code for correctness. Is `getPoint`...
I did an [experiment](https://github.com/OptimalDesignLab/PumiInterface.jl/blob/curved_adapt/src/funcs1.cc#L1428) yesterday where I keep the mesh as Lagrange most of the time (so my r-adaptation code works), and convert back and forth to Bezier when doing...
@cwsmith ping
``` commit ac77deda8998991870bd379f6d94c56886130aed Author: Fan Yang Date: Thu Jul 4 16:37:03 2019 -0400 add new nodal field hmin_flag ```