__init__.py 314 B

123456789101112
  1. import numpy as np
  2. # list of numarray data types
  3. integer_types: list[str] = [
  4. "int8", "uint8", "int16", "uint16",
  5. "int32", "uint32", "int64", "uint64"]
  6. float_types: list[str] = ["float32", "float64"]
  7. complex_types: list[str] = ["complex64", "complex128"]
  8. types: list[str] = integer_types + float_types