Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions paper/paper.bib
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ @misc{multiprecision

@misc{msvc_int128,
author = {{Microsoft Corporation}},
title = {{Microsoft C++ Standard Library}: {\_\_msvc\_int128.hpp}},
title = {Microsoft {C}++ Standard Library: {\_\_msvc\_int128.hpp}},
year = {2026},
publisher = {GitHub},
journal = {GitHub repository},
Expand Down Expand Up @@ -58,7 +58,7 @@ @article{Nickolls:2008

@misc{cuda_guide,
author = {{NVIDIA Corporation}},
title = {{CUDA C++ Programming Guide}},
title = {{CUDA C}++ Programming Guide},
year = {2026},
url = {https://docs.nvidia.com/cuda/cuda-c-programming-guide/}
}
Expand Down Expand Up @@ -166,7 +166,7 @@ @article{Borland2026
number = {124},
pages = {10345},
author = {Borland, Matt and Kormanyos, Christopher},
title = {Boost.Decimal: A C++14 Library for Decimal Floating Point Arithmetic},
title = {{Boost.Decimal}: A {C}++14 Library for Decimal Floating Point Arithmetic},
journal = {Journal of Open Source Software}
}

Expand Down
4 changes: 2 additions & 2 deletions paper/paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Relaxed C++14 `constexpr` covers nearly the whole interface.

Each type is a struct of two `std::uint64_t` words ordered by target endianness, so the object representation and alignment match a native 128-bit integer.
Keeping both words unsigned lets the compiler treat the pair as one wide access, so loops over these types vectorize rather than scalarize.
Operators forward to a native 128-bit type or intrinsic where one exists, and follow Knuth [@Knuth:1998] and Warren [@Warren:2013] over the two words elsewhere, with identical results.
Operators forward to a native 128-bit type or intrinsic where one exists, and follow @Knuth:1998 and @Warren:2013 over the two words elsewhere, with identical results.
The library also supplies the interfaces the extension lacks, among them `<limits>`, `<bit>`, `<charconv>`, `<format>`, `<iostream>`, hashing, Boost.Random and Boost.Math integration, saturating arithmetic, the C23 checked-arithmetic interface [@c23], and the `div_*` family of P3724 [@p3724].

Continuous integration runs the test suite natively on Linux, macOS, and Windows across x86_64, x86_32, aarch64, ARM32v7, ARM64, and big-endian s390x, plus PPC64LE under QEMU, using GCC 5 and later, Clang 5 and later, Visual Studio 2017 and later, Intel oneAPI DPC++, and NVCC.
Expand Down Expand Up @@ -118,6 +118,6 @@ All library code, benchmark results, and text were reviewed and verified by the

# Acknowledgements

We thank The C++ Alliance for sponsoring this work, the domain experts who peer-reviewed the library in July 2026 before its acceptance into the Boost library collection, and Arnaud Becheler for managing that review.
We thank the C++ Alliance for sponsoring this work, the domain experts who peer-reviewed the library in July 2026 before its acceptance into the Boost library collection, and Arnaud Becheler for managing that review.

# References