SIMD.fromFloat32x4

SIMD.fromFloat32x4

SIMD.js 已经从 TC39中 取消了积极的开发并从第三阶段中删除了。它不再被网页浏览器所追求。SIMAs 操作暴露于 Web,正在 WebAssembly 中进行积极的开发,其操作基于 SIMD.js 操作。

静态 SIMD.%type%.fromFloat32x4() 方法创建一个新的 SIMD 数据类型,并使用 Float32x4 进行浮点数转换。

语法

SIMD.Int32x4.fromFloat32x4(t) SIMD.Uint32x4.fromFloat32x4(t)

参数

t 一个Float32x4 SIMD 类型转换。

返回值

一种新的 SIMD 数据类型,包含 Float32x4 的浮点数转换。

异常

  • RangeError,如果从浮点到整数的转换失去精度(如果通道值小于-2147483649.0或大于2147483648.0)

例子

SIMD.Int32x4.fromFloat32x4

执行浮点到整数 t 的转换。

var t = SIMD.Float32x4(1.0, 2.0, 3.0, 4.0 SIMD.Int32x4.fromFloat32x4(t // Int32x4[1, 2, 3, 4] var t = SIMD.Float32x4(1.0, 2.0, 3.0, 2147483650.0 SIMD.Int32x4.fromFloat32x4(t // RangeError: SIMD conversion loses precision

规范

SpecificationStatusComment
SIMDThe definition of 'SIMDConstructor.fromTIMD' in that specification.DraftInitial definition.

浏览器兼容性

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic supportNo supportNightly buildNo supportNo supportNo support

FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic supportNo supportNo supportNightly buildNo supportNo supportNo support