SIMD.js has been taken out of active development in TC39 and removed from Stage 3. It is not being pursued by web browsers for implementation anymore. SIMD operations exposed to the web are under active development within WebAssembly, with operations based on the SIMD.js operations.
The static SIMD.%type%.sqrt()
method returns a new instance with the square root of the lane values (see also Math.sqrt()
for the same scalar function).
Syntax
SIMD.Float32x4.sqrt(t) SIMD.Float64x2.sqrt(t)
Parameters
- t
- An instance of a corresponding SIMD type.
Return value
A new corresponding SIMD data type with square root values.
Examples
var a = SIMD.Float32x4(9, 49, 3, 2); SIMD.Float32x4.sqrt(a); // Float32x4[3, 7, 1.7320507764816284, 1.4142135381698608] var b = SIMD.Float64x2(4, 8); SIMD.Float64x2.sqrt(b); // Float64x2[2, 2.8284271247461903]
Specifications
Specification | Status | Comment |
---|---|---|
SIMD The definition of 'SIMDConstructor.sqrt' in that specification. |
Obsolete | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | No support | Nightly build | No support | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | No support | Nightly build | No support | No support | No support |