kodama-cpp
Standalone float32 KODAMA kernels for CPU, CUDA, and Apple Metal
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 Stefano Cacciatore
2// SPDX-License-Identifier: MIT
3
4#pragma once
5
6#define KODAMA_VERSION_MAJOR 0
7#define KODAMA_VERSION_MINOR 1
8#define KODAMA_VERSION_PATCH 0
9#define KODAMA_VERSION_STRING "0.1.0"
10
11namespace kodama {
12
13inline constexpr int version_major = KODAMA_VERSION_MAJOR;
14inline constexpr int version_minor = KODAMA_VERSION_MINOR;
15inline constexpr int version_patch = KODAMA_VERSION_PATCH;
16inline constexpr const char* version_string = KODAMA_VERSION_STRING;
17
18} // namespace kodama
constexpr int version_minor
Definition version.hpp:14
constexpr const char * version_string
Definition version.hpp:16
constexpr int version_patch
Definition version.hpp:15
constexpr int version_major
Definition version.hpp:13
#define KODAMA_VERSION_PATCH
Definition version.hpp:8
#define KODAMA_VERSION_MINOR
Definition version.hpp:7
#define KODAMA_VERSION_MAJOR
Definition version.hpp:6
#define KODAMA_VERSION_STRING
Definition version.hpp:9