Skip to content

Commit 69bbe3f

Browse files
committed
Remove link
1 parent 59881d6 commit 69bbe3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

FAQ.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ NOTE: addressed by BigInt
354354

355355
1. **Big numbers**: add support for big [integers][julia-bigint], [rationals][golang-big], and [floats][julia-bigfloat]. In addition to cryptography and computing irrational numbers, arbitrary precision arithmetic is useful for algorithms involving double-precision floating-point numbers. Currently, lack of efficient, and relatively performant, big number support limits the scope and types of implemented algorithms, including for basic transcendental functions.
356356

357-
1. **SIMD**: add support for long SIMD. Currently, [proposals][ecmascript-simd] for [SIMD][mdn-simd-js] in JavaScript have focused on [short SIMD][mozilla-simd], which is well-suited for graphics applications. However, [short SIMD][mozilla-simd] is **not** particularly well-suited for large vector operations, which are common in numerical computing (e.g., BLAS).
357+
1. **SIMD**: add support for long SIMD. Currently, [proposals][ecmascript-simd] for [SIMD][ecmascript-simd] in JavaScript have focused on [short SIMD][mozilla-simd], which is well-suited for graphics applications. However, [short SIMD][mozilla-simd] is **not** particularly well-suited for large vector operations, which are common in numerical computing (e.g., BLAS).
358358

359359
**Aside:** JavaScript may never have native SIMD support. Instead, SIMD is currently only possible only via [WebAssembly][wasm]. Lack of native JavaScript SIMD support would be unfortunate, as plenty of applications exist (e.g., scripting for purposes of analysis and data manipulation), which would benefit from SIMD operations without requiring a context switch to a lower-level language and additional compilation steps.
360360

@@ -664,6 +664,8 @@ In general, far too many developers are oblivious to the module resolution [algo
664664

665665
where `g.js`
666666

667+
<!-- eslint-disable -->
668+
667669
```javascript
668670
var beep = require( 'beep' );
669671
var debug = require( 'debug' );
@@ -812,8 +814,6 @@ See the [contributing guide][contributing-guide].
812814

813815
[mdn-math]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math
814816

815-
[mdn-simd-js]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SIMD
816-
817817
<!--
818818
[mdn-web-workers]: https://developer.mozilla.org/en-US/docs/Web/API/Worker/Worker
819819

0 commit comments

Comments
 (0)