Serac  0.1
Serac is an implicit thermal strucural mechanics simulation code.
about.hpp
Go to the documentation of this file.
1 // Copyright (c) 2019-2024, Lawrence Livermore National Security, LLC and
2 // other Serac Project Developers. See the top-level LICENSE file for
3 // details.
4 //
5 // SPDX-License-Identifier: (BSD-3-Clause)
6 
14 #pragma once
15 
16 #include <string>
17 
18 namespace serac {
19 
25 std::string about();
26 
34 std::string gitSHA();
35 
41 void printRunInfo();
42 
50 std::string version(bool add_SHA = true);
51 
52 } // namespace serac
Accelerator functionality.
Definition: serac.cpp:38
std::string version(bool add_SHA)
Returns a string for the version of Serac.
Definition: about.cpp:211
std::string gitSHA()
Returns a string for the Git SHA when the driver was built.
Definition: about.cpp:190
std::string about()
Returns a string about the configuration of Serac.
Definition: about.cpp:53
void printRunInfo()
Outputs basic run information to the screen.
Definition: about.cpp:192