Results 262 comments of Cameron Smith

In the PUMI api (since ghosting was mentioned), the following functions count then return global owned ents: count: https://github.com/SCOREC/core/blob/14d26129e5054a8fef9b6983753bf30e46309906/pumi/pumi.h#L234 query: https://github.com/SCOREC/core/blob/14d26129e5054a8fef9b6983753bf30e46309906/pumi/pumi.h#L236

Yes. A prefix sum (`exscan(...)` on line 560 below) is used to globalize the numbering. https://github.com/SCOREC/core/blob/b48c0df2347c07d0072b318c836a9f523036dfd6/apf/apfNumbering.cc#L535-L569

@timetravellers we have valgrind support that works with mpirun: https://github.com/SCOREC/core/blob/ecc64db4e488b64d39a7439d50f711e8cdc7f1c6/test/testing.cmake#L5-L8 https://github.com/SCOREC/core/blob/a6b4cbf589e5ee64a5c5f88ab6a0e28a20da74a4/CMakeLists.txt#L61-L64 IIRC, the builtin cmake valgrind integration does not support being called by mpirun. The gcov addition is interesting. I'll...

This looks promising. Good find :+1: . Are there any drawbacks vs. the current approach?

@KennethEJansen mentioned in a call today that several filters (slice, contour, etc.) revert back to linear elements with some of the higher order element types. I'm not sure if the...

This is an issue with SimAdvModel, not SimAdvMeshing.

AdvMeshing - mostly enables boundary layers construction and adaptation AdvModeling - enables model creation The details are in the docs shipped with SimModSuite.

Thank you for the contribution. What version of CGNS and hdf5 does this work with? Would you please share the build scripts (the cmake/make commands would be sufficient)?

Thank you. The script worked with a few small tweaks: ``` cwsmith@cranium: /space/cwsmith $ diff cgnsOrig.sh cgnsMod.sh 10,11c10,11 < BUILD_DIR="./ch_build" < INSTALL_DIR="./ch_install" --- > BUILD_DIR="$PWD/ch_build" > INSTALL_DIR="$PWD/ch_install" 14,15c14,15 < BUILD_DIR="./ch_build"...

A few initial cmake changes were added to a draft PR here: https://github.com/a-jp/core/pull/1