-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add caliper to saxpy * add license * Fix license --------- Co-authored-by: Riyaz Haque <[email protected]> Co-authored-by: pearce8 <[email protected]>
- Loading branch information
1 parent
2447e35
commit 5e7b9e4
Showing
4 changed files
with
113 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright 2023 Lawrence Livermore National Security, LLC and other | ||
// Benchpark Project Developers. See the top-level COPYRIGHT file for details. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
#ifndef SAXPY_CONFIG_HH | ||
#define SAXPY_CONFIG_HH | ||
|
||
#define SAXPY_COMPILER_ID "@CMAKE_C_COMPILER_ID@" | ||
#define SAXPY_COMPILER_VERSION "@CMAKE_C_COMPILER_VERSION@" | ||
#define SAXPY_CMAKE_C_FLAGS "@CMAKE_C_FLAGS@" | ||
|
||
// Version information | ||
#define SAXPY_MAJOR_VERSION @SAXPY_MAJOR_VERSION@ | ||
#define SAXPY_MINOR_VERSION @SAXPY_MINOR_VERSION@ | ||
#define SAXPY_PATCH_VERSION @SAXPY_PATCH_VERSION@ | ||
#define SAXPY_VERSION "@SAXPY_VERSION@" | ||
|
||
#endif // SAXPY_CONFIG_HH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters