Articles tagged: SIMD
Found 66 documents
- Web/JavaScript/Reference/Global_Objects/Bool16x8 The SIMD.Bool16x8 data type is a 128-bit vector divided into 8 lanes storing boolean values.
- Web/JavaScript/Reference/Global_Objects/Bool32x4 The SIMD.Bool32x4 data type is a 128-bit vector divided into 4 lanes storing boolean values.
- Web/JavaScript/Reference/Global_Objects/Bool64x2 The SIMD.Bool64x2 data type is a 128-bit vector divided into 2 lanes storing boolean values.
- Web/JavaScript/Reference/Global_Objects/Bool8x16 The SIMD.Bool8x16 data type is a 128-bit vector divided into 16 lanes storing boolean values.
- Web/JavaScript/Reference/Global_Objects/Float32x4 The SIMD.Float32x4 data type is a 128-bit vector divided into 4 lanes storing single precision ...
- Web/JavaScript/Reference/Global_Objects/Float64x2 The SIMD.Float64x2 data type is a 128-bit vector divided into 2 lanes storing double precision ...
- Web/JavaScript/Reference/Global_Objects/Int16x8 The SIMD.Int16x8 data type is a 128-bit vector divided into 8 lanes storing 16-bit signed ...
- Web/JavaScript/Reference/Global_Objects/Int32x4 The SIMD.Int32x4 data type is a 128-bit vector divided into 4 lanes storing 32-bit signed ...
- Web/JavaScript/Reference/Global_Objects/Int8x16 The SIMD.Int8x16 data type is a 128-bit vector divided into 16 lanes storing 8-bit signed ...
- Web/JavaScript/Reference/Global_Objects/SIMD SIMD (pronounced "sim-dee") is short for Single Instruction/Multiple Data which is one ...
- Web/JavaScript/Reference/Global_Objects/SIMD/abs The static SIMD.%type%.abs() method returns a new SIMD data type with absolute values. This ...
- Web/JavaScript/Reference/Global_Objects/SIMD/add The static SIMD.%type%.add() method returns a new instance with the lane values added (a + b).
- Web/JavaScript/Reference/Global_Objects/SIMD/addSaturate The static SIMD.%type%.addSaturate() method returns a new instance with the lane values added (a ...
- Web/JavaScript/Reference/Global_Objects/SIMD/allTrue The static SIMD.%BooleanType%.allTrue() method returns a Boolean indicating whether or not all ...
- Web/JavaScript/Reference/Global_Objects/SIMD/and The static SIMD.%type%.and() method returns a new instance with the logical AND of the lane ...
- Web/JavaScript/Reference/Global_Objects/SIMD/anyTrue The static SIMD.%BooleanType%.anyTrue() method returns a Boolean indicating whether or not any ...
- Web/JavaScript/Reference/Global_Objects/SIMD/check The static SIMD.%type%.check() method returns a SIMD data type if the parameter is a valid SIMD ...
- Web/JavaScript/Reference/Global_Objects/SIMD/div The static SIMD.%type%.div() method returns a new instance with the lane values divided (a / b). ...
- Web/JavaScript/Reference/Global_Objects/SIMD/equal The static SIMD.%type%.equal() method returns a selection mask with values depending on a strict ...
- Web/JavaScript/Reference/Global_Objects/SIMD/extractLane The static SIMD.%type%.extractLane() method returns the value of a given lane.
- Web/JavaScript/Reference/Global_Objects/SIMD/fromFloat32x4 The static SIMD.%type%.fromFloat32x4() method creates a new SIMD data type with a float ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromFloat32x4Bits The static SIMD.%type%.fromFloat32x4Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromFloat64x2Bits The static SIMD.%type%.fromFloat64x2Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromInt16x8Bits The static SIMD.%type%.fromInt16x8Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromInt32x4 The static SIMD.%type%.fromInt32x4() method creates a new SIMD data type with a float conversion ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromInt32x4Bits The static SIMD.%type%.fromInt32x4Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromInt8x16Bits The static SIMD.%type%.fromInt8x16Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromUint16x8Bits The static SIMD.%type%.fromUint16x8Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromUint32x4 The static SIMD.%type%.fromUint32x4() method creates a new SIMD data type with a conversion from ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromUint32x4Bits The static SIMD.%type%.fromUint32x4Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/fromUint8x16Bits The static SIMD.%type%.fromUint8x16Bits() method creates a new SIMD data type with a bit-wise ...
- Web/JavaScript/Reference/Global_Objects/SIMD/greaterThan The static SIMD.%type%.greaterThan() method returns a selection mask with values depending on a ...
- Web/JavaScript/Reference/Global_Objects/SIMD/greaterThanOrEqual The static SIMD.%type%.greaterThanOrEqual() method returns a selection mask with values ...
- Web/JavaScript/Reference/Global_Objects/SIMD/lessThan The static SIMD.%type%.lessThan() method returns a selection mask with values depending on a ...
- Web/JavaScript/Reference/Global_Objects/SIMD/lessThanOrEqual The static SIMD.%type%.lessThanOrEqual() method returns a selection mask with values depending ...
- Web/JavaScript/Reference/Global_Objects/SIMD/load The static SIMD.%type%.load() methods create a new SIMD data type with the lane values loaded ...
- Web/JavaScript/Reference/Global_Objects/SIMD/max The static SIMD.%type%.max() method returns a new instance with the maximum lane values of two ...
- Web/JavaScript/Reference/Global_Objects/SIMD/maxNum The static SIMD.%type%.maxNum() method returns a new instance with the maximum lane values of ...
- Web/JavaScript/Reference/Global_Objects/SIMD/min The static SIMD.%type%.min() method returns a new instance with the minimum lane values of two ...
- Web/JavaScript/Reference/Global_Objects/SIMD/minNum The static SIMD.%type%.minNum() method returns a new instance with the minimum lane values of ...
- Web/JavaScript/Reference/Global_Objects/SIMD/mul The static SIMD.%type%.mul() method returns a new instance with the lane values multiplied (a * b).
- Web/JavaScript/Reference/Global_Objects/SIMD/neg The static SIMD.%type%.mul() method returns a new instance with the lane values negated.
- Web/JavaScript/Reference/Global_Objects/SIMD/not The static SIMD.%type%.not() method returns a new instance with the bitwise logical NOT of the ...
- Web/JavaScript/Reference/Global_Objects/SIMD/notEqual The static SIMD.%type%.notEqual() method returns a selection mask with values depending on an ...
- Web/JavaScript/Reference/Global_Objects/SIMD/or The static SIMD.%type%.or() method returns a new instance with the logical OR of the lane values ...
- Web/JavaScript/Reference/Global_Objects/SIMD/reciprocalApproximation The static SIMD.%type%.reciprocalApproximation() method returns a new instance with an ...
- Web/JavaScript/Reference/Global_Objects/SIMD/reciprocalSqrtApproximation The static SIMD.%type%.reciprocalSqrtApproximation() method returns a new instance with an ...
- Web/JavaScript/Reference/Global_Objects/SIMD/replaceLane The static SIMD.%type%.replaceLane() method returns a new SIMD data type with the given lane ...
- Web/JavaScript/Reference/Global_Objects/SIMD/select The static SIMD.%type%.select() method creates a new integer SIMD data type with the lane values ...
- Web/JavaScript/Reference/Global_Objects/SIMD/shiftLeftByScalar The static SIMD.%type%.shiftLeftByScalar() method returns a new instance with the lane values ...
- Web/JavaScript/Reference/Global_Objects/SIMD/shiftRightByScalar The static SIMD.%type%.shiftRightByScalar() method returns a new instance with the lane values ...
- Web/JavaScript/Reference/Global_Objects/SIMD/shuffle The static SIMD.%type%.shuffle() method creates a new SIMD data type instance with the lane ...
- Web/JavaScript/Reference/Global_Objects/SIMD/splat The static SIMD.%type%.splat() method creates a new SIMD data type with all lanes set to a given ...
- Web/JavaScript/Reference/Global_Objects/SIMD/sqrt The static SIMD.%type%.sqrt() method returns a new instance with the square root of the lane ...
- Web/JavaScript/Reference/Global_Objects/SIMD/store The static SIMD.%type%.store() methods store a SIMD data type into a typed array.
- Web/JavaScript/Reference/Global_Objects/SIMD/sub The static SIMD.%type%.sub() method returns a new instance with the lane values subtracted (a - b).
- Web/JavaScript/Reference/Global_Objects/SIMD/subSaturate The static SIMD.%type%.subSaturate() method returns a new instance with the lane values ...
- Web/JavaScript/Reference/Global_Objects/SIMD/swizzle The static SIMD.%type%.swizzle() method creates a new SIMD data type instance with the lane ...
- Web/JavaScript/Reference/Global_Objects/SIMD/toSource The non-standard SIMD.%type%.toSource() method returns a string representing the source code of ...
- Web/JavaScript/Reference/Global_Objects/SIMD/toString The SIMD.%type%.toString() method returns a String representing a SIMD object.
- Web/JavaScript/Reference/Global_Objects/SIMD/valueOf The SIMD.%type%.valueOf() method performs a type check returns the this value.
- Web/JavaScript/Reference/Global_Objects/SIMD/xor The static SIMD.%type%.xor() method returns a new instance with the logical XOR of the lane ...
- Web/JavaScript/Reference/Global_Objects/Uint16x8 The SIMD.Uint16x8 data type is a 128-bit vector divided into 8 lanes storing 16-bit unsigned ...
- Web/JavaScript/Reference/Global_Objects/Uint32x4 The SIMD.Uint32x4 data type is a 128-bit vector divided into 4 lanes storing 32-bit unsigned ...
- Web/JavaScript/Reference/Global_Objects/Uint8x16 The SIMD.Uint8x16 data type is a 128-bit vector divided into 16 lanes storing 8-bit unsigned ...
- Web/JavaScript/SIMD_types The experimental JavaScript SIMD API introduces vector objects that utilize SIMD/SSE ...