Commit graph

77 commits

Author SHA1 Message Date
Zoltán Vörös
af121eef1a
Update README.md 2021-06-19 11:24:39 +02:00
Zoltán Vörös
047e51b220
Update README.md 2021-06-17 21:32:03 +02:00
Zoltán Vörös
28d6530c9c
Update README.md 2021-06-03 10:12:16 +02:00
Zoltán Vörös
9cc3638604
Update README.md 2021-05-24 21:30:06 +02:00
teuler
a35c209f1e Update README.md
Hint to later esp-idf version and name change for TINYPICO board
2021-05-15 08:13:16 +02:00
Zoltán Vörös
9464cb772b refer to build script in readme 2021-04-28 07:52:08 +02:00
Zoltán Vörös
e01f8059c5 add ESP32 cmake instructions to readme 2021-04-28 07:43:51 +02:00
Zoltán Vörös
0924daa819
Update README.md
Co-authored-by: Dan Halbert <halbert@halwitz.org>
2021-04-27 16:59:26 +02:00
Zoltán Vörös
c79a993b33
Update README.md
Co-authored-by: Dan Halbert <halbert@halwitz.org>
2021-04-27 16:59:18 +02:00
Zoltán Vörös
bd3b03080b add circuitpython compilation section to README 2021-04-27 07:30:39 +02:00
Zoltán Vörös
fb44eafb9c
correct esp32 instructions
Added small correction based on https://github.com/v923z/micropython-ulab/issues/365
2021-04-18 20:05:40 +02:00
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