Skip to content
TensorStore
tensorstore.dtype
Initializing search
    google/tensorstore
    google/tensorstore
      • Tutorial
      • Indexing
      • API reference
        • Core
        • Indexing
        • Spec
        • Views
        • Data types
          • Cdtype
            • Constructors
              • M__init__(name)
              • M__init__(dtype)
            • Public members
              • Pname
              • Mto_json
              • Pnumpy_dtype
              • Ptype
              • M__call__
          • Cdtype
            • Constructors
              • M__init__(name)
              • M__init__(dtype)
            • Public members
              • Pname
              • Mto_json
              • Pnumpy_dtype
              • Ptype
              • M__call__
          • Vbool
          • Vint8
          • Vuint8
          • Vint16
          • Vuint16
          • Vint32
          • Vuint32
          • Vint64
          • Vuint64
          • Vfloat16
          • Vbfloat16
          • Vfloat32
          • Vfloat64
          • Vcomplex64
          • Vcomplex128
          • Vstring
          • Vustring
          • Vjson
        • Asynchronous support
        • Experimental
      • Building and Installing
      • Environment variables
      • JSON Spec
      • Index space
      • Schema
      • Context framework
      • Drivers
      • Key-Value Storage Layer
    • Constructors
    • Public members
    class tensorstore.dtype

    TensorStore data type representation.

    Constructors¶

    dtype(name: str)

    Construct by name.

    dtype(dtype: dtype)

    Construct from an existing TensorStore or NumPy data type.

    Public members¶

    name : str
    to_json() → str
    numpy_dtype : numpy.dtype
    type : object
    __call__(arg0: object) → object

    Construct a scalar instance of this data type

    Back to top
    Previous tensorstore.virtual_chunked
    Next tensorstore.dtype.__init__(name)