Skip to content

Commit 937fbb8

Browse files
authored
Update README.md
1 parent 4513198 commit 937fbb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ IEEE arithmetic and can produce artifacts, but CPU arithmetic is robust and brow
1414
### Benchmark
1515
![](https://i.imgur.com/dXeSYKO.png)
1616

17-
You can check [quality / performance](https://munrocket.github.io/double.js/test/bench/bench.html) and [correctness](https://munrocket.github.io/double.js/test/e2e.html) of double.js library in your browser.
17+
You can check [quality / performance](https://munrocket.github.io/double-js/test/bench/bench.html) and [correctness](https://munrocket.github.io/double-js/test/e2e.html) of double.js library in your browser.
1818

1919
### Usage
2020
Include double.js script to webpage or install npm package. Here some basic examples
@@ -37,7 +37,7 @@ let dF = (x) => F(x.add(h)).sub(F(x)).div(h);
3737
// |f'(x)| < 1 ? print(x)
3838
if (dF(x).abs().lt(1)) { console.log(x.toExponential()); }
3939
```
40-
Further API details you can find in [wiki](https://github.com/munrocket/double.js/wiki) page and check it in [sandbox](https://runkit.com/munrocket/double-js-example). Be careful when initializing a new floats, for example `new Double(0.1)` is ok for integer numbers, but you should use `new Double('0.1')` to get correct results for fractional numburs. All double-double arithmetic functions are accurate and tested, say me if you find something strange.
40+
Further API details you can find in [wiki](https://github.com/munrocket/double-js/wiki) page and check it in [sandbox](https://runkit.com/munrocket/double-js-example). Be careful when initializing a new floats, for example `new Double(0.1)` is ok for integer numbers, but you should use `new Double('0.1')` to get correct results for fractional numburs. All double-double arithmetic functions are accurate and tested, say me if you find something strange.
4141

4242
### WebAssembly version
4343
I got x3 boost in Chrome, x3.5 in Safari and x7 in Firefox for mandelbrot set algo with hardcoded global variables. To get speed improvement with wasm, you need to write your entire algorithm with it, because Js<->Wasm interop is too heavy.

0 commit comments

Comments
 (0)