npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mp-wasm

v0.4.0

Published

Multiple precision arithmetic in JS with WASM

Downloads

7

Readme

mp-wasm

Multiple precision arithmetic in JS with WASM.

Note: This is pretty experimental, as WASM is itself somewhat experimental right now.

Installation

Node.JS

Just grab this off of NPM:

npm i mp-wasm
const mpWasm = require('mp-wasm')
// ...

Web

Download the files mp.wasm and mp-wasm.js. In your page, just pop this in there:

<script src="mp-wasm.js"></script>
<script>
fetchMPWasm('mp.wasm').then((mpWasm) => {
    // ...
})
</script>

They're Different?

Yes. Synchronous feels right on Node.JS for this. Likewise, the web is built for asynchronous stuff.

The rest of this is the same though (that is, synchronous).

Usage

The main API object (named mpWasm above), currently exposes one thing: mpf, which is a GNU MP floating point reliably factory:

const { mpf } = mpWasm

mpf lets you make MPFloat instances (I will now use mpf to also refer to MPFloat):

mpf(1.5e-4)
mpf('3.563432432')
mpf('0xdeadbeef')
mpf('55434.3244324235454353543e10')
mpf(99999999999999999999999999999999999999999999999n)

You can also set the value of an mpf instance after it's initially created:

mpf(54235432.432432432).set(-5)

It also has a bunch of functions which accept parameters of all types:

mpf.add(1, '3.56')
mpf.sub(3247321987493214231n, mpf('7.67653431432143214324321432115e21'))

All these functions are curried into methods for instances as well:

mpf(55659437894732143172493127n).mul(10n**33n)
mpf('inf').neg()

Instance Configuration

Many of the functions also carry similar options which may be expressed as an optional last parameter. For example,

mpf(1.567e10, { prec: 3 })

creates an instance of mpf with only three bits of precision in its significand. Likewise, a rounding mode may be specified:

mpf(1.5, { roundingMode: 'roundTowardZero' })

Or both, if you'd like:

mpf(3.5, { prec: 128, roundingMode: 'roundTowardPositive' })

Available Rounding Modes

These modes correspond with MPFR's:

| 'roundTiesToEven'     |  0  |
| 'roundTowardZero'     |  1  |
| 'roundTowardPositive' |  2  |
| 'roundTowardNegative' |  3  |
| 'roundAwayZero'       |  4  |
| 'roundFaithful'       |  5  |
| 'roundTiesToAwayZero' | -1  |

Either the string or the number value may be specified as the rounding mode.

General Configuration

For getting/setting the default precision in bits used (be sure to set this to a higher precision than its default starting value 53, which is comparable to just doing plain double float computations):

getDefaultPrec()
setDefaultPrec(prec)

For getting/setting the default rounding mode:

getDefaultRoundingMode() {
setDefaultRoundingMode(roundingMode) {

Past mpf instances do not get updated when this parameter changes. Future new instances and computations will use these default settings though.

Constants

These functions gets a corresponding math constant and returns an shared instance of it:

getLog2(opts)
getPi(opts)
getEuler(opts)
getCatalan(opts)

Operators

Unary operators:

sqr       sqrt      recSqrt    cbrt    neg     abs
log       log2      log10      log1p
exp       exp2      exp10      expm1
cos       sin       tan        sec     csc     cot
acos      asin      atan     
cosh      sinh      tanh       sech    csch    coth
acosh     asinh     atanh      fac
eint      li2       gamma      lngamma      digamma
zeta      erf       erfc       j0    j1    y0   y1
rint      rintCeil  rintFloor  rintRound
rintRoundeven       rintTrunc  frac

Binary operators:

add       sub       mul        div
rootn     pow       dim
atan2        gammaInc     beta
jn        yn        agm       hypot
fmod      remainder
min       max

And comparison operators < (lt), <= (lte), > (gt) >= (gte), == (eq), and <> (lgt) exist, with the latter two distinguishing between edge cases with NaN values. All of the comparison operators are on the prototype and must be called as a method on the instance:

mpf('1.0').lt('1.0000000000000000000000000000001')

Cast these mpfs to JS primitives with:

toString()
toNumber(opts)

The following checks are also available:

isNaN()
isFinite()
isInteger()

Internal Representation

mpf instances can have their internal representation info acquired with the following methods:

  • isSignBitSet()

    This returns true if number is a negative number/zero/infinity, and false otherwise.

  • getBinaryExponent()

    This returns the exponent for a given number x when x is written in the form significand * 2^exponent, where significand is in the range [0.5, 1). Also, for some special cases:

    • If x is ±0, return −∞
    • If x is ±∞, return +∞
    • If x is NaN, return NaN
  • getSignificandRawBytes()

    This returns a Uint8Array of the bytes of the significand in little-endian order padded to a multiple of the WASM machine word size. The least significant bits of this array are zeroes according to the precision of the mpf. Unlike IEEE 754, there is no leading bit convention, and the significand will typically have its most significant bit explicitly set.

Future Stuff

Add MPC, MPFI, and/or iRRAM?

At least some complex ops would be nice.