redisai-js
Version:
A high-performance Typescript client for RedisAI
25 lines • 701 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {value: true});
exports.DTypeMap = exports.DType = void 0;
var DType;
(function (DType) {
DType["float32"] = "FLOAT";
DType["double64"] = "DOUBLE";
DType["int8"] = "INT8";
DType["int16"] = "INT16";
DType["int32"] = "INT32";
DType["int64"] = "INT64";
DType["uint8"] = "UINT8";
DType["uint16"] = "UINT16";
})(DType = exports.DType || (exports.DType = {}));
exports.DTypeMap = {
FLOAT: DType.float32,
DOUBLE: DType.double64,
INT8: DType.int8,
INT16: DType.int16,
INT32: DType.int32,
INT64: DType.int64,
UINT8: DType.uint8,
UINT16: DType.uint16,
};
//# sourceMappingURL=DType.js.map