-
Notifications
You must be signed in to change notification settings - Fork 9
Build Requirements
Cezary Skrzyński edited this page Mar 14, 2023
·
41 revisions
VT conforms to and requires C++17.
- MPI 3+
- OpenMP 3+ (optional, if threading is enabled)
The remainder of libraries are all embedded with the proper version in VT's source code. For a list of the libraries (along with the associated license agreements for them) that VT embeds, refer to Third-Party Libraries (TPLs)
A supported compiler is one which a mainline VT build SHOULD be able to target. Other compilers are expected to work if they sufficiently implement the C++17 standard.
These are chosen due to usage in research and HPC builds. It is recommended to use newer compiler versions whenever possible.
- GNU compilers (gcc) >= 4.9.3
- Clang/llvm (clang) >= 3.9
- Intel compilers (icc) >= 18.03
- NVidia cuda compiler (nvcc) (10.1, 11.0)
- Portland Group (pgi) (??)
- IBM compilers (xlc) (??)
The list of supported compilers (and minimum versions) can change with newer VT releases.
Tracing requires __PRETTY_FUNCTION__
, as first implemented as a GCC extension.