[PR #2] [MERGED] [mpy/mod] Added uLab #189

Closed
opened 2026-05-06 13:16:10 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/UpsilonNumworks/Upsilon/pull/2
Author: @ArtichOwO
Created: 9/1/2021
Status: Merged
Merged: 9/1/2021
Merged by: @Lauryy06

Base: upsilon-dev-ulabHead: uLab


📝 Commits (2)

  • b0befbd [MPY/MOD] Added uLab
  • 837fcd9 [MPY/MOD/ULAB] Added N100 compatibility

📊 Changes

56 files changed (+13053 additions, -0 deletions)

View changed files

📝 python/Makefile (+26 -0)
📝 python/port/genhdr/qstrdefs.in.h (+117 -0)
python/port/mod/ulab/ndarray.c (+2180 -0)
python/port/mod/ulab/ndarray.h (+736 -0)
python/port/mod/ulab/ndarray_operators.c (+807 -0)
python/port/mod/ulab/ndarray_operators.h (+277 -0)
python/port/mod/ulab/ndarray_properties.c (+100 -0)
python/port/mod/ulab/ndarray_properties.h (+92 -0)
python/port/mod/ulab/numpy/approx/approx.c (+221 -0)
python/port/mod/ulab/numpy/approx/approx.h (+29 -0)
python/port/mod/ulab/numpy/compare/compare.c (+417 -0)
python/port/mod/ulab/numpy/compare/compare.h (+150 -0)
python/port/mod/ulab/numpy/fft/fft.c (+82 -0)
python/port/mod/ulab/numpy/fft/fft.h (+24 -0)
python/port/mod/ulab/numpy/fft/fft_tools.c (+165 -0)
python/port/mod/ulab/numpy/fft/fft_tools.h (+23 -0)
python/port/mod/ulab/numpy/filter/filter.c (+84 -0)
python/port/mod/ulab/numpy/filter/filter.h (+20 -0)
python/port/mod/ulab/numpy/linalg/linalg.c (+397 -0)
python/port/mod/ulab/numpy/linalg/linalg.h (+26 -0)

...and 36 more files

📄 Description

Added uLab from https://github.com/v923z/micropython-ulab
It should be compatible with N100 :3
Things to do:

  • Add numpy and scipy shortcuts to code toolbox
  • Remove some functions to save some space ?

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/UpsilonNumworks/Upsilon/pull/2 **Author:** [@ArtichOwO](https://github.com/ArtichOwO) **Created:** 9/1/2021 **Status:** ✅ Merged **Merged:** 9/1/2021 **Merged by:** [@Lauryy06](https://github.com/Lauryy06) **Base:** `upsilon-dev-ulab` ← **Head:** `uLab` --- ### 📝 Commits (2) - [`b0befbd`](https://github.com/UpsilonNumworks/Upsilon/commit/b0befbdbc5c66e5f0eeb880d0e9afe6ff13e6d87) [MPY/MOD] Added uLab - [`837fcd9`](https://github.com/UpsilonNumworks/Upsilon/commit/837fcd9bcc491e491f8aa392cd5c09d47e1927b9) [MPY/MOD/ULAB] Added N100 compatibility ### 📊 Changes **56 files changed** (+13053 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `python/Makefile` (+26 -0) 📝 `python/port/genhdr/qstrdefs.in.h` (+117 -0) ➕ `python/port/mod/ulab/ndarray.c` (+2180 -0) ➕ `python/port/mod/ulab/ndarray.h` (+736 -0) ➕ `python/port/mod/ulab/ndarray_operators.c` (+807 -0) ➕ `python/port/mod/ulab/ndarray_operators.h` (+277 -0) ➕ `python/port/mod/ulab/ndarray_properties.c` (+100 -0) ➕ `python/port/mod/ulab/ndarray_properties.h` (+92 -0) ➕ `python/port/mod/ulab/numpy/approx/approx.c` (+221 -0) ➕ `python/port/mod/ulab/numpy/approx/approx.h` (+29 -0) ➕ `python/port/mod/ulab/numpy/compare/compare.c` (+417 -0) ➕ `python/port/mod/ulab/numpy/compare/compare.h` (+150 -0) ➕ `python/port/mod/ulab/numpy/fft/fft.c` (+82 -0) ➕ `python/port/mod/ulab/numpy/fft/fft.h` (+24 -0) ➕ `python/port/mod/ulab/numpy/fft/fft_tools.c` (+165 -0) ➕ `python/port/mod/ulab/numpy/fft/fft_tools.h` (+23 -0) ➕ `python/port/mod/ulab/numpy/filter/filter.c` (+84 -0) ➕ `python/port/mod/ulab/numpy/filter/filter.h` (+20 -0) ➕ `python/port/mod/ulab/numpy/linalg/linalg.c` (+397 -0) ➕ `python/port/mod/ulab/numpy/linalg/linalg.h` (+26 -0) _...and 36 more files_ </details> ### 📄 Description Added uLab from https://github.com/v923z/micropython-ulab It should be compatible with N100 :3 Things to do: - [ ] Add numpy and scipy shortcuts to code toolbox - [ ] Remove some functions to save some space ? --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 13:16:10 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Upsilon#189
No description provided.