const sload = SIMD.Float32x4.load; const sadd = SIMD.Float32x4.add; const smul = SIMD.Float32x4.mul; const ssqrt = SIMD.Float32x4.sqrt; const sstore = SIMD.Float32x4.store;
const someValue = SIMD.Float32x4(1,0,0,0); const otherValue = SIMD.Float32x4(0,1,0,0); const summ = SIMD.Float32x4.add(someValue, otherValue);
By Vladimir