This repository contains the reference implementation of Tejú Jaguá, a partial (see below) algorithm for converting floating-point numbers to string.
The main function is teju_function
in teju/teju.h
.
It is written in C, the lingua franca of programming languages, making the code accessible to a large number of programmers.
The implementation for each floating-point type is parameterised on the characteristics of the type.
The parameters are provided as entities (e.g., macros) that must be defined before teju/teju.h
is #include
d.
Even the function name, teju_function
, is a macro to ensure that there are different symbols for different floating-point types.
Their definitions are created by an external program, the generator, written in C++ in cpp/generator
.
The generated files #include
teju/teju.h
.
For the most common IEEE-754 types the generated files are checked in teju/generated
.
The input for the generator is a config JSON file describing the floating-point type and details of the platform/implementation.
Again, for the most common IEEE-754 types, config files are checked in config
.
Tejú Jaguá only performs the main step of the conversion.
Indeed, converting a floating-point value x
(e.g., -10,000,000,000) into a string can be split into the three following steps.
x
into its sign, exponent and mantissa of the binary representation (-9,765,625 x 2¹⁰)."-"
, "1
", "10"
) and assemble them to form the final result ("-1e10"
).
Tejú Jaguá, i.e. teju_function
, only performs step 2 but this repository also provides implementations of step 1 for the most common IEEE-754 floating-point types.
No implementation for step 3 is provided (yet).An academic paper will be written to provide proof of correctness.
This work has been presented at C++ Now 2024, C++ on Sea 2024 and CppCon 2024
A set of CMake presets is available. For instance, on Linux the preset
gcc.debug.make
builds in debug
mode using gcc
and make
. On Windows
msvc.debug.ninja
builds in debug
mode using msvc
and ninja
. In general,
preset names have the form compiler.mode.builder where
clang
(Linux), clang-cl
(Windows), gcc (Linux) or
msvc
(Windows);debug
, release
or release-symbols
;make
(Linux) or ninja
.Tip: cmake --list-presets
shows the complete list of available presets for your platform.
To build everything, on the top level directory, run:
$ cmake --preset <preset-name>
$ cmake --build build/<preset-name>
Make sure you have the
cmake
tools installed and, optionally,
clang
tools if you wish to build with clang-cl
. Simply open the top level
folder and select one of the available presets.
During the configuration phase, CMake creates folder third-party
where it downloads specific versions of third-party dependencies:
Dragonbox and Ryu are alternative algorithms for converting floating-point numbers into strings. They are used, alongside GoogleTest, for testing (checking that Tejú Jaguá produces the same results as the alternatives.) The generator uses Nlohmann JSON to read the config files and Boost Multiprecision to calculate constants required by Tejú Jaguá. Nanobench is used to benchmark Tejú Jaguá, Dragonbox and Ryu.
The build creates three executables in build/<preset-name>/bin
: generator
, benchmark
and test
.