geopm_version(3) – GEOPM library version
Synopsis
#include <geopm_version.h>
Link with -lgeopm (MPI) or -lgeopm (non-MPI)
const char *geopm_version(void);
Description
geopm_version()Returns a human readable string describing the version of the GEOPM library linked to the calling application. The form is
<MAJOR>.<MINOR>.<HOTFIX>for released versions and<MAJOR>.<MINOR>.<HOTFIX>+dev<COUNT>g<HASH>for development snapshots.MAJORis the major revision number,MINORis the minor revision number,HOTFIXis the hotfix iteration,COUNTis the number of git commits since the tagged release andHASHis the git SHA-1 hash of the last commit. For example"0.0.1"is a release version,"0.0.1+dev21g986987f"is a development snapshot21commits away from the0.0.1release with the git SHA-1 that begins with"986987f".