No description
Find a file
Jeff Epler 1beddec7bb Fix some define-guards
These problems were found building in circuitpython:
../../extmod/ulab/code/numerical.c:671:5: error: "ULAB_NUMERICAL_ARGSORT" is not defined, evaluates to 0 [-Werror=undef]
  671 | #if ULAB_NUMERICAL_ARGSORT
      |     ^~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
../../extmod/ulab/code/ulab.c:150:9: error: "ULAB_VECTORISE_" is not defined, evaluates to 0 [-Werror=undef]
  150 |     #if ULAB_VECTORISE_
      |         ^~~~~~~~~~~~~~~
../../extmod/ulab/code/ulab.c:159:9: error: "ULAB_VECTORISE_TAHN" is not defined, evaluates to 0 [-Werror=undef]
  159 |     #if ULAB_VECTORISE_TAHN
      |         ^~~~~~~~~~~~~~~~~~~
../../extmod/ulab/code/ulab.c:198:9: error: "ULAB_NUMERICAL_ARGSORT" is not defined, evaluates to 0 [-Werror=undef]
  198 |     #if ULAB_NUMERICAL_ARGSORT
      |         ^~~~~~~~~~~~~~~~~~~~~~
2020-02-11 10:42:58 -06:00
code Fix some define-guards 2020-02-11 10:42:58 -06:00
docs removed extra ndarray_get_buffer 2020-02-10 19:54:49 +01:00
LICENSE Create LICENSE 2019-09-11 19:53:01 +02:00
README.md Trim README to just the basics 2020-02-11 10:08:47 -06:00

circuitpython-ulab

ulab is a numpy-like array manipulation library for micropython. The module is written in C, defines compact containers for numerical data, and is fast.

ulab will be incorporated in builds of most CircuitPython supported devices, so there's usually no need to use the files here directly. If you've encountered a problem with circuitpython-ulab, please file an issue in the circuitpython issue tracker.

circuitpython-ulab is based on micropython-ulab.