From ed4c2c05504cfece4c1cd95a5ba993a2b96b64a6 Mon Sep 17 00:00:00 2001 From: Lutz Roeder Date: Mon, 9 Sep 2024 18:36:06 -0700 Subject: [PATCH] Update openvino.js --- source/openvino.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/openvino.js b/source/openvino.js index 2fa8dcde75..f437da60cc 100644 --- a/source/openvino.js +++ b/source/openvino.js @@ -786,6 +786,7 @@ openvino.TensorType = class { case 'f4e2m1': this.dataType = 'float4e2m1'; break; case 'f8e4m3': this.dataType = 'float8e4m3'; break; case 'f8e5m2': this.dataType = 'float8e5m2'; break; + case 'f8e8m0': this.dataType = 'float8e8m0'; break; case 'f16': this.dataType = 'float16'; break; case 'f32': this.dataType = 'float32'; break; case 'f64': this.dataType = 'float64'; break; @@ -793,6 +794,7 @@ openvino.TensorType = class { case 'fp32': this.dataType = 'float32'; break; case 'fp64': this.dataType = 'float64'; break; case 'bf16': this.dataType = 'bfloat16'; break; + case 'nf4': this.dataType = 'nfloat4'; break; case 'i4': this.dataType = 'int4'; break; case 'i8': this.dataType = 'int8'; break; case 'i16': this.dataType = 'int16'; break;