This will build micropython's master branch with ulab support, and then run the tests in tests/ At this time, there's only one test and it's not very useful.
6 lines
82 B
Python
6 lines
82 B
Python
try:
|
|
import ulab
|
|
except ImportError:
|
|
raise SystemExit
|
|
|
|
print(ulab.eye(3))
|