32 lines
992 B
C++
32 lines
992 B
C++
//@HEADER
|
|
// ************************************************************************
|
|
//
|
|
// Kokkos v. 4.0
|
|
// Copyright (2022) National Technology & Engineering
|
|
// Solutions of Sandia, LLC (NTESS).
|
|
//
|
|
// Under the terms of Contract DE-NA0003525 with NTESS,
|
|
// the U.S. Government retains certain rights in this software.
|
|
//
|
|
// Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://kokkos.org/LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//@HEADER
|
|
|
|
#include "Kokkos_Version_Info.hpp"
|
|
|
|
namespace Kokkos {
|
|
namespace Impl {
|
|
|
|
std::string GIT_BRANCH = R"branch(@GIT_BRANCH@)branch";
|
|
std::string GIT_COMMIT_HASH = "@GIT_COMMIT_HASH@";
|
|
std::string GIT_CLEAN_STATUS = "@GIT_CLEAN_STATUS@";
|
|
std::string GIT_COMMIT_DESCRIPTION =
|
|
R"message(@GIT_COMMIT_DESCRIPTION@)message";
|
|
std::string GIT_COMMIT_DATE = "@GIT_COMMIT_DATE@";
|
|
|
|
} // namespace Impl
|
|
|
|
} // namespace Kokkos
|