Results 262 comments of Cameron Smith

The number of operations will be identical since pumi/apf is storing a one-level adjacency structure (section 2.4 of https://www.scorec.rpi.edu/REPORTS/2015-4.pdf). The iteration order of vertices should also be the same.

Whoops. Good catch. Wrong Fan.

Hi @KennethEJansen. Good question. I just successfully built the `exGenMesh.cc` example from SimModSuite 18.0-220605dev with Intel 19 on a RHEL7 system using the following commands: ``` mkdir -p obj/x64_rhel7_gcc48 icc...

Thanks for the OS info. It looks like Sun RPC, which provides the xdr api/types, was removed from glibc in [version 2.32](https://abi-laboratory.pro/index.php?view=changelog&l=glibc&v=2.32), and was optional starting with [version 2.26](https://abi-laboratory.pro/?view=changelog&l=glibc&v=2.26). In...

@Thomas-Ulrich I just pushed a branch to spack (https://github.com/spack/spack/tree/cws/simmodsuiteRpc) that adds the rpc dependency. This doesn't yet resolve the issue as PUMI needs to know to look for the RPC...

@Thomas-Ulrich An initial version of a CMake build system for SimModSuite is here: https://github.com/SCOREC/simmodsuiteCmake It currently installs a CMake config file that can be used to successfully compile and link...

@tobinw Would you please resolve the conflicts in `apf/apfUserData.h`? I merged #163 into develop and I think Jacob's clone changes would stay in `apfUserData.h`, but I'm not 100% sure.

I hit a few `unused-parameter` and `unused-but-set-variable` compilation warnings with gcc7.3 on rhel7. A patch to silence them is attached. [silenceWarnings.patch.gz](https://github.com/SCOREC/core/files/2375198/silenceWarnings.patch.gz)

@KennethEJansen I converted the input arg to take the file name and loop over its contents (one int per line). https://github.com/SCOREC/core/pull/375/commits/a15f1318e1f915142b311c48f6bc35d2c709d54f In the input `ExtruRootID.txt` file I changed the source...

I seem to be hitting the same error with amdclang++ 14.0.0. The same code compiles without error with clang 14.0.0 (https://godbolt.org/z/4fdMhY51f). ``` $ amdclang++ -std=c++17 scan.cpp -o scan scan.cpp:8:8: error:...