Phil Howard
adc260a2b9
Update RP2 build instructions to use upstream
2021-03-30 16:48:39 +01:00
Zoltán Vörös
24caf74d90
Update README.md
2021-03-28 16:19:33 +02:00
Zoltán Vörös
1af6c9b0d1
Update README.md
2021-03-28 16:17:07 +02:00
Zoltán Vörös
7a6207079a
Update README.md
2021-03-28 16:14:43 +02:00
Phil Howard
a0ebea086b
Update CMake documentation for rp2/esp32
2021-03-25 21:11:13 +00:00
Zoltán Vörös
064cb67b88
fix esp32 link
2021-03-23 19:39:57 +01:00
Zoltán Vörös
74e11c9bff
add link to esp32 build script
2021-03-23 19:38:31 +01:00
Zoltán Vörös
8d77d959cc
fix ulab directory
2021-03-21 18:52:17 +01:00
Zoltán Vörös
8d185cf2fc
spell out installation directory
2021-03-21 18:50:51 +01:00
Zoltán Vörös
bdca1c328e
fix typo
2021-03-21 18:47:57 +01:00
Zoltán Vörös
db71303fb0
fix ESP32 compilation error and instructions
2021-03-21 18:43:18 +01:00
Zoltán Vörös
ee7fb20898
Update README.md
2021-03-12 22:06:19 +01:00
Zoltán Vörös
d460dbcc7f
Update README.md
2021-03-12 21:11:47 +01:00
Simon Richard
17be6e6188
📝 Add rp2 firmware instructions
...
Add instructions for compiling micropython with ulab for the rp2 port.
2021-03-10 16:58:21 -05:00
retsyo
09fc46aa92
Update README.md
...
README.md says
```
try:
from ulab import numpy as np
from ulab import scipy as spy
except ImportError:
import numpy as np
import scipy as spy
x = np.array([1, 2, 3])
spy.special.erf(x)
```
but in fact, for CPython
```
>>> import scipy as spy
>>> spy.special.erf
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'scipy' has no attribute 'special'
>>> import scipy.special
>>>
```
so I think the README should be
```
try:
from ulab import numpy
from ulab import scipy
except ImportError:
import numpy
import scipy.special
x = numpy.array([1, 2, 3])
print(x)
print(scipy.special.erf(x))
```
2021-02-17 22:30:45 +08:00
Zoltán Vörös
d760d885fd
updated readme
...
This PR incorporates the instructions in https://github.com/v923z/micropython-ulab/issues/323
2021-02-15 18:54:21 +01:00
Zoltán Vörös
a0cd09c7c3
Update README.md
2021-02-13 11:16:49 +01:00
Zoltán Vörös
6b9ec26d02
Update README.md
2021-02-13 11:13:59 +01:00
Zoltán Vörös
51a8c12820
Update README.md
2021-02-13 11:12:26 +01:00
Zoltán Vörös
bd4b9eeaf1
Update README.md
2021-01-24 09:34:44 +01:00
Zoltán Vörös
2ed1699fe1
re-worded several sections of readme
2021-01-16 10:35:42 +01:00
Zoltán Vörös
48a3a65998
added build instructions for the unix port
2021-01-16 10:06:03 +01:00
Zoltán Vörös
206b3668e4
updated readme with esp32 instructions
2021-01-15 16:09:05 +01:00
Zoltán Vörös
d6936aa1c4
updated readme
2021-01-15 07:44:29 +01:00
Zoltán Vörös
148c948fa4
added reference to median
2020-11-03 21:08:36 +01:00
Zoltán Vörös
c21a54e336
added a reference to the diag function
2020-11-02 22:35:00 +01:00
Zoltán Vörös
9df0ddf8f2
Merge branch 'tensor'
...
Updates the master branch with all changes implemented in tensor
2020-10-30 23:14:03 +01:00
Zoltán Vörös
e947baddd7
updated readme
2020-10-17 09:14:22 +02:00
Zoltán Vörös
fd0751144e
added link to ulab_samples
2020-08-13 10:07:56 +02:00
Zoltán Vörös
a2f27760c6
Update README.md
...
updated link to compiled firmware
2020-08-07 18:03:18 +02:00
Zoltán Vörös
3aa37c8e55
Update README.md
...
added link to ESP32 firmware
2020-08-03 19:42:13 +02:00
Zoltán Vörös
23ad568b0b
Update README.md
...
fixed links to compiled firmware
2020-07-31 21:45:02 +02:00
Zoltán Vörös
4a771347bb
Update README.md
...
fixed links to compiled firmware
2020-07-31 20:35:31 +02:00
Zoltán Vörös
11a7ecff6d
Update README.md
...
Fixed typo in readme.
2020-07-28 07:55:56 +02:00
Zoltán Vörös
e77f74df29
Update README.md
...
added link to compiled firmware repository
2020-07-27 19:43:26 +02:00
Zoltán Vörös
9159465d62
Update README.md
...
Added a list of firmware variants with `ulab` included.
2020-07-26 23:14:35 +02:00
Zoltán Vörös
1f1e181f5d
Update README.md
...
fixed some smaller issues in the readme.
2020-07-23 22:55:34 +02:00
Zoltán Vörös
4013206dc2
fixed typos
2020-07-22 21:20:29 +02:00
Zoltán Vörös
4724b516c2
updated readme
2020-07-22 21:17:08 +02:00
Zoltán Vörös
2f55b71542
updated user manual
2020-06-19 22:29:00 +02:00
Zoltán Vörös
526ffb4c78
updated readme, version number and change log
2020-06-19 22:06:47 +02:00
Zoltán Vörös
ddbbca7462
added benchmark to bisect, extended readme
2020-05-19 21:12:53 +02:00
Zoltán Vörös
e31d7ab906
updated readme
2020-05-07 00:27:11 +02:00
Zoltán Vörös
a6ec2e65dd
updated readme
2020-05-03 17:07:50 +02:00
Zoltán Vörös
6ff9d2cb04
add test script for compare module
2020-04-21 23:24:24 +02:00
Zoltán Vörös
434211d401
updated README.md
...
added a short comment on the `numerical` sub-module
2020-04-18 11:45:41 +02:00
Zoltán Vörös
7b8d894413
extended readme
2020-04-09 10:18:52 +02:00
Zoltán Vörös
97f23da0c1
removed warning about missing roundf.c
...
The file has been appended to the makefile upstream.
2020-03-25 08:57:00 +01:00
Zoltán Vörös
84558f9447
added a workaround for a linker error
2020-03-20 22:14:58 +01:00
Zoltán Vörös
0434045293
Update README.md
...
Clarified statement on CP builds.
2020-03-07 09:46:50 +01:00