SIMD.sqrt
SIMD.sqrt
SIMD.js已经从TC39中取消了积极的开发,并从第三阶段中删除了。它不再被网页浏览器所追求。暴露在 web 上的SIMD 操作在 WebAssembly 中正处于积极的发展之中, 其操作基于 SIMD. js 操作。
静态SIMD.%type%.sqrt()
方法返回带有通道值平方根的新实例(另请参阅Math.sqrt()
相同的标量函数)。
语法
SIMD.Float32x4.sqrt(t)
SIMD.Float64x2.sqrt(t)
参数
t 一个相应的SIMD类型的实例。
返回值
具有平方根值的新的对应SIMD数据类型。
例子
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]
规范
Specification | Status | Comment |
---|---|---|
SIMDThe definition of 'SIMDConstructor.sqrt' in that specification. | Draft | Initial definition. |
浏览器兼容性
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 |