diff options
Diffstat (limited to 'include/ocl/logic/math.hpp')
| -rw-r--r-- | include/ocl/logic/math.hpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/ocl/logic/math.hpp b/include/ocl/logic/math.hpp new file mode 100644 index 0000000..d131ef9 --- /dev/null +++ b/include/ocl/logic/math.hpp @@ -0,0 +1,33 @@ +/* + * File: math.hpp + * Purpose: Mathematics c++ header. + * Author: Amlal El Mahrouss (amlal@nekernel.org) + * Copyright 2025, Amlal El Mahrouss, Licensed under the Boost Software License. + */ + +#pragma once + +namespace ocl +{ + template <__SIZE_TYPE__ T> + struct is_non_boolean_integer final + { + static constexpr const bool value = true; + }; + + template <> + struct is_non_boolean_integer<false> final + { + static constexpr const bool value = false; + }; + + template <> + struct is_non_boolean_integer<true> final + { + static constexpr const bool value = false; + }; + + constexpr inline auto not_a_number = __builtin_nanf(""); + constexpr inline auto positive_infinity = __builtin_inff(); + constexpr inline auto negative_infinity = -positive_infinity; +} // namespace ocl
\ No newline at end of file |
