(Last updated: August 20, 2023)
Back To:
Expanded Articles:
General:
Large Number Arithmetic:
Implementation (as of v0.8.2):
General Information:
Libraries and Dependencies:
y-cruncher has no other non-system dependencies. No Boost. No GMP. Pretty much everything that isn't provided by C++ is built from ground up.
Furthermore, the Cilk and TBB dependencies can be trivially removed without affecting the core functionality of the program.
Compilers:
Other Internal Requirements:
Code Organization:
y-cruncher's root source tree is (roughly) broken up into the following subdirectories. They are listed in order of build dependency.
The public portion of the support libraries.
The CPU dispatcher that picks the optimal binary to run.
It's the module that builds the y-cruncher(.exe) binary.
The bundled BBP digit extraction app for Pi.
Modules
2,841 484,039 NoLow-level arbitrary-precision arithmetic: Addition, subtraction, multiplication, single-word division, and checksum hashing.
Large number objects. (BigInt, BigFloat, etc...)
High-level mathematical code. Implementations for all functions and all the constants.
A public interface to the internal large number library.
Research infrastructure and test app for the YMP library.
y-cruncher itself. Top-level code that includes all the UI menus.
Sandboxes for experimental code.
Settings, versioning, and development sandbox.
Software bloat anyone?
Notes:
Limits:
Like most other programs, there are theoretical limits to y-cruncher. Most of these limits are enforced by the program.
Ram Usage
~1.8 GiB ~ 1 EiB (1018 bytes)Limited by memory address space.
Disk Usage
~ 1 EiBLimited by 64-bit address space.
Task Decomposition
65,536Arbitrary limit.
RAID - Level 1
8 pathsRAID - Level 2
64 x Level 1 RAID groupsLimited by the # of bits in largest integer.
Will likely be increased in the future.
Largest Multiplication
(2.02 * 1018) x (2.02 * 1018) bitsSmall Primes Number-Theoretic Transform:
Convolution Length
4.03 * 1018 bitsComputation Size
(for all constants)
1015 decimal digitsLimited by double-precision floating-point.*
BBP Hexadecimal Offset
246 - 1Implementation-specific limitation.
*y-cruncher uses double-precision floating-point for things such as:
The result of these calculations are generally rounded to integers and must be accurate to +/- 1 for the program to operate correctly. The problem is that double-precision floating-point only has 53 bits of precision which will run out at around 9 * 1015. Since there is round-off error, the limit will certainly be lower. The exact limit is unknown and will vary with the different constants. Therefore y-cruncher arbitrarily caps it to 1015 decimal digits. Colloquially, I call this the "float-indexing limit".
There are currently no plans to raise this limit since it is already well beyond the capability of current hardware (as of 2015).
It is worth mentioning that the float-indexing limit is the only thing left that prevents y-cruncher from going all the way up to the 64-bit limit. Without it, it should be possible to reach 6.1 * 1017 decimal digits (the limit of the Small Primes NTT).
Getting rid of the float-indexing limit will require a floating-point type with at least a 64-bit mantissa. A viable option is to use 80-bit extended-precision via the x87 FPU although some compilers don't support it. But since "float indexing" isn't exactly a performance bottleneck, any sort of software emulation will probably work as well.