TypeTensor - v0.1.0
    Preparing search index...

    Variable CommonDTypesConst

    CommonDTypes: Readonly<
        {
            bool: RuntimeDType<Bool>;
            float32: RuntimeDType<Float32>;
            float64: RuntimeDType<Float64>;
            int16: RuntimeDType<Int16>;
            int32: RuntimeDType<Int32>;
            int64: RuntimeDType<Int64>;
            int8: RuntimeDType<Int8>;
            uint16: RuntimeDType<Uint16>;
            uint32: RuntimeDType<Uint32>;
            uint64: RuntimeDType<Uint64>;
            uint8: RuntimeDType<Uint8>;
        },
    > = ...

    Common DType instances for convenience

    import { CommonDTypes } from './dtype';
    const array = createTypedArray(CommonDTypes.float32, 1000);