summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2020-05-13 20:28:58 +0200
committerGitHub <noreply@github.com>2020-05-13 20:28:58 +0200
commitda0e657d392cdcba6313f4f708cf064566f173a0 (patch)
tree9b6ea0e667a9b0e19f45a063657efa6dae1745c8 /include
parent0826bfe683e7cdc1c68224a923715928fc07e753 (diff)
parent396ac0278a095e76c963f0da8709698b7bf19e1f (diff)
Merge pull request #389 from CNugteren/CLBlast-385-version-defines
Added version number defines
Diffstat (limited to 'include')
-rw-r--r--include/clblast.h5
-rw-r--r--include/clblast_c.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/include/clblast.h b/include/clblast.h
index 7a82361c..296f3987 100644
--- a/include/clblast.h
+++ b/include/clblast.h
@@ -39,6 +39,11 @@
#define PUBLIC_API
#endif
+// Version numbering (v1.5.1)
+#define CLBLAST_VERSION_MAJOR 1
+#define CLBLAST_VERSION_MINOR 5
+#define CLBLAST_VERSION_PATCH 1
+
namespace clblast {
// =================================================================================================
diff --git a/include/clblast_c.h b/include/clblast_c.h
index 2ba6375a..7f7b1e97 100644
--- a/include/clblast_c.h
+++ b/include/clblast_c.h
@@ -34,6 +34,11 @@
#define PUBLIC_API
#endif
+// Version numbering (v1.5.1)
+#define CLBLAST_VERSION_MAJOR 1
+#define CLBLAST_VERSION_MINOR 5
+#define CLBLAST_VERSION_PATCH 1
+
// The C interface
#ifdef __cplusplus
extern "C" {