forked from boostorg/multiprecision
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #177 from BoostGSoC21/qbook_docs
Fix #165 via add quickbook docs
- Loading branch information
Showing
7 changed files
with
132 additions
and
167 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
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,44 @@ | ||
[/ | ||
Copyright 2021 - 2024 Fahad Syed. | ||
Copyright 2024 Christopher Kormanyos. | ||
|
||
Distributed under the Boost Software License, Version 1.0. | ||
(See accompanying file LICENSE_1_0.txt or copy at | ||
http://www.boost.org/LICENSE_1_0.txt). | ||
] | ||
|
||
[section:cpp_double_fp_ref cpp_double_fp_backend] | ||
|
||
namespace boost{ namespace multiprecision { | ||
|
||
template <class FloatingPointType> | ||
class cpp_double_fp_backend; | ||
|
||
typedef number<cpp_double_fp_backend<float>, et_off> cpp_double_float; | ||
typedef number<cpp_double_fp_backend<double>, et_off> cpp_double_double; | ||
typedef number<cpp_double_fp_backend<long double>, et_off> cpp_double_long_double; | ||
typedef number<cpp_double_fp_backend<boost::float128_type>, et_off> cpp_double_float128; // Only when boost::float128_type is available | ||
|
||
}} // namespaces | ||
|
||
The `cpp_double_fp_backend` back-end is the sum of two IEEE floating-point numbers | ||
combined to create a type having rougly twice the composite width of one of its parts. | ||
The `cpp_double_fp_backend` back-end is used in conjunction with `number` | ||
and acts as an entirely C++ header only floating-point number type. | ||
|
||
Class template `cpp_double_fp_backend` fulfils all of the requirements for a [link boost_multiprecision.ref.backendconc Backend] type. | ||
Its members and non-member functions are deliberately not documented: these are considered implementation details that are subject | ||
to change. | ||
|
||
The class takes one template parameter: | ||
|
||
[variablelist | ||
[[FloatingPointType][The consituent IEEE floating-point value of the two limbs of the composite type. | ||
This can be `float`, `double`, `long double` or when available `boost::float128_type`.]] | ||
] | ||
|
||
The type of `number_category<cpp_dec_float<Args...> >::type` is `std::integral_constant<int, number_kind_floating_point>`. | ||
|
||
More information on this type can be found in the [link boost_multiprecision.tut.floats.cpp_double_fp_backend tutorial]. | ||
|
||
[endsect] |
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,76 @@ | ||
[/ | ||
Copyright 2021 - 2024 Fahad Syed. | ||
Copyright 2024 Christopher Kormanyos. | ||
|
||
Distributed under the Boost Software License, Version 1.0. | ||
(See accompanying file LICENSE_1_0.txt or copy at | ||
http://www.boost.org/LICENSE_1_0.txt). | ||
] | ||
|
||
[section:cpp_double_fp_backend cpp_double_fp_backend] | ||
|
||
`#include <boost/multiprecision/cpp_double_fp_backend.hpp>` | ||
|
||
namespace boost{ namespace multiprecision { | ||
|
||
template <class FloatingPointType> | ||
class cpp_double_fp_backend; | ||
|
||
typedef number<cpp_double_fp_backend<float>, et_off> cpp_double_float; | ||
typedef number<cpp_double_fp_backend<double>, et_off> cpp_double_double; | ||
typedef number<cpp_double_fp_backend<long double>, et_off> cpp_double_long_double; | ||
typedef number<cpp_double_fp_backend<boost::float128_type>, et_off> cpp_double_float128; // Only when boost::float128_type is available | ||
|
||
}} // namespaces | ||
|
||
The `cpp_double_fp_backend` back-end is the sum of two IEEE floating-point numbers | ||
combined to create a type having rougly twice the composite width of one of its parts. | ||
The `cpp_double_fp_backend` back-end is used in conjunction with `number` | ||
and acts as an entirely C++ header only floating-point number type. | ||
|
||
The `cpp_double_fp_backend` types have fixed width and do not allocate. | ||
The type `cpp_double_double`, for instance, (composed of two double-precision IEEE floating-point numebers) | ||
has (on most common systems) 106 binary digits of precision and approximately | ||
32 decimal digits of precision. | ||
|
||
The exponent ranges of the types are slightly limited (on the negative side) compared to those of the composite type. | ||
Consider again the type `cpp_double_double`, composed of two double-precision IEEE double-precision | ||
floating-point numebers. On common systems, this type has a maximum decimal exponent of 308 | ||
(as does a single double-precision floating point number). The negative minimum exponent, however, | ||
is about -291, which is less range than the -3�7 from standalone double. The reason for | ||
the limitation is because the composite lower-limb has lower value than its upper limb and would | ||
underflow or become subnormal if the upper limb had its usual minimum value. | ||
|
||
There is full standard library and `std::numeric_limits` support available for this type. | ||
|
||
Note that the availability of `cpp_double_float128` depends on the availability | ||
of `boost::float128_type`, which can be queried at compile-time via the | ||
configuration macro `BOOST_HAS_FLOAT128`. This is available at the moment | ||
predominantly with GCC compilers in GNU-standard mode and (with GCC 14 and later) | ||
also in strict ANSI mode. | ||
|
||
Run-time performance is a top-level requirement for the `cpp_double_fp_backend` types. | ||
The types still do, however, support infinities, NaNs and (of course) zeros. | ||
Signed negative zero, however, is not supported (in favor of efficiency) | ||
and all zeros are treated as positive. | ||
|
||
The `cpp_double_fp_backend` types inoteroperate with Boost.Math and Boost.Math.Constants. | ||
This offers the wealth of Boost-related mathematical tools instantiated with | ||
the `cpp_double_fp_backend` types. | ||
|
||
Things you should know when using the `cpp_double_fp_backend` types: | ||
|
||
* Although the types are created from two individual IEEE floating-point components, they specifically and clearly not in their composite forms also IEEE types. | ||
* As a result these types can behave subtly differently from IEEE floating-point types. | ||
* There is a `std::numeric_limits` specialization for this type. | ||
* Conversion to and from string internally uses an intermediate `cpp_dec_float` value. | ||
|
||
The `cpp_double_fp_backend` back-end has been inspired by original works and types such as the historical `doubledouble` | ||
and more. These include the following: | ||
|
||
* K. Briggs, the doubledouble library, 1998. | ||
* Yozo Hida, X. Li, and D. H. Bailey, Quad-Double Arithmetic: Algorithms, Implementation, and Application, Lawrence Berkeley National Laboratory Technical Report LBNL-46996 (2000). Also Y. Hida et al., Library for double-double and quad-double arithmetic [@https://web.mit.edu/tabbott/Public/quaddouble-debian/qd-2.3.4-old/docs/qd.pdf]. | ||
* Mioara Maria Joldes, Jean-Michel Muller, Valentina Popescu. Tight and rigorous error bounds for basic building blocks of double-word arithmetic. ACM Transactions on Mathematical Software, 2017, 44 (2), pp. 1 - 27. ff10.1145/3121432ff. ffhal-01351529v3f. | ||
* The `cpp_double_fp_backend` draft was originally created by Fahad Syed in BoostGSoC2021 _multiprecision_ [@https://github.com/BoostGSoC21/multiprecision]. | ||
|
||
[endsect] |
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
Oops, something went wrong.