IEEE 754 half-precision floating-point ponyfill for JavaScript
See TC39 proposal or the archive of the ES Discuss Float16Array topic for details
npm install @petamoriken/float16
[!NOTE] Native float16 features are supported since Deno v1.43.
deno add jsr:@petamoriken/float16
[!NOTE] Native float16 features are supported since Bun v1.1.23.
bun add @petamoriken/float16
import {
Float16Array, isFloat16Array, isTypedArray,
getFloat16, setFloat16,
f16round,
} from "@petamoriken/float16";
Deliver a browser/float16.mjs or browser/float16.js file in the npm package
from your Web server with the JavaScript Content-Type HTTP header.
<!-- Module Scripts -->
<script type="module">
import {
Float16Array, isFloat16Array, isTypedArray,
getFloat16, setFloat16,
f16round,
} from "DEST/TO/float16.mjs";
</script>
<!-- Classic Scripts -->
<script src="DEST/TO/float16.js"></script>
<script>
const {
Float16Array, isFloat16Array, isTypedArray,
getFloat16, setFloat16,
f16round,
} = float16;
</script>
This package only requires ES2015 features and does not use
environment-dependent features (except for inspect/), so you can use it
without any problems. It works fine with
the current officially supported versions of Node.js.
Float16Array implemented by Proxy and Reflect, so IE11 is never supported
even if you use polyfills.
lib/ and browser/ directories in the npm package have JavaScript files
already transpiled, and they have been tested automatically in the following
environments:
Float16ArrayFloat16Array is similar to TypedArray such as Float32Array
(MDN).
const array = new Float16Array([1.0, 1.1, 1.2, 1.3]);
for (const value of array) {
// 1, 1.099609375, 1.2001953125, 1.2998046875
console.log(value);
}
// Float16Array(4) [ 2, 2.19921875, 2.3984375, 2.599609375 ]
array.map((value) => value * 2);
isFloat16Array[!WARNING] This API returns
falsefor ECMAScript’s nativeFloat16Array
isFloat16Array is a utility function to check whether the value given as an
argument is an instance of Float16Array or not.
const buffer = new ArrayBuffer(256);
// true
isFloat16Array(new Float16Array(buffer));
// false
isFloat16Array(new Float32Array(buffer));
isFloat16Array(new Uint16Array(buffer));
isFloat16Array(new DataView(buffer));
isTypedArrayisTypedArray is a utility function to check whether the value given as an
argument is an instance of a type of TypedArray or not. Unlike
util.types.isTypedArray in Node.js, this returns true for Float16Array.
const buffer = new ArrayBuffer(256);
// true
isTypedArray(new Float16Array(buffer));
isTypedArray(new Float32Array(buffer));
isTypedArray(new Uint16Array(buffer));
// false
isTypedArray(new DataView(buffer));
getFloat16, setFloat16getFloat16 and setFloat16 are similar to DataView methods such as
DataView#getFloat32
(MDN)
and DataView#setFloat32
(MDN).
declare function getFloat16(view: DataView, byteOffset: number, littleEndian?: boolean): number;
declare function setFloat16(view: DataView, byteOffset: number, value: number, littleEndian?: boolean): void;
const buffer = new ArrayBuffer(256);
const view = new DataView(buffer);
view.setUint16(0, 0x1234);
getFloat16(view, 0); // 0.0007572174072265625
// You can append methods to DataView instance
view.getFloat16 = (...args) => getFloat16(view, ...args);
view.setFloat16 = (...args) => setFloat16(view, ...args);
view.getFloat16(0); // 0.0007572174072265625
view.setFloat16(0, Math.PI, true);
view.getFloat16(0, true); // 3.140625
f16round (alias: hfround)f16round is similar to Math.fround
(MDN).
This function returns nearest half-precision float representation of a number.
declare function f16round(x: number): number;
Math.fround(1.337); // 1.3370000123977661
f16round(1.337); // 1.3369140625
Float16Array limitations (edge cases)Float16Array has some limitations, because it is impossible to completely reproduce the behavior of TypedArray. Be careful when checking if it is a TypedArray or not by using ArrayBuffer.isView, and when using Web standards such as structuredClone and WebGL.Float16Array custom inspectionconsole.log more readable.
MIT License
This software contains productions that are distributed under
the Apache 2.0 License.
Specifically, index.d.ts is modified from the original
TypeScript lib files.