lyken
|
2747869a45
|
core/ndstrides: implement general ndarray reshaping
|
2024-07-31 09:53:15 +08:00 |
David Mak
|
318a675ea6
|
standalone: Rename -m32 to -i386
|
2024-07-29 14:58:58 +08:00 |
David Mak
|
32e52ce198
|
standalone: Revert using uint32_t as slice length
Turns out list and str have always been size_t.
|
2024-07-29 14:58:29 +08:00 |
David Mak
|
8c5ba37d09
|
standalone: Add 32-bit execution tests to check_demo.sh
|
2024-07-26 13:35:40 +08:00 |
David Mak
|
3d3c258756
|
standalone: Remove support for --lli
|
2024-07-26 13:32:38 +08:00 |
David Mak
|
ed1182cb24
|
standalone: Update format specifiers for exceptions
Use platform-agnostic identifiers instead.
|
2024-07-26 13:32:37 +08:00 |
David Mak
|
fd025c1137
|
standalone: Use uint32_t for cslice length
Matching the expected type of string and list slices.
|
2024-07-26 13:32:21 +08:00 |
lyken
|
44487b76ae
|
standalone: interpret_demo.py remove duplicated section
|
2024-07-22 17:23:35 +08:00 |
lyken
|
1332f113e8
|
standalone: fix interpret_demo.py comments
|
2024-07-22 17:06:14 +08:00 |
lyken
|
1a31a50b8a
|
standalone: fix __nac3_raise def in demo.c
|
2024-07-17 21:22:08 +08:00 |
Sebastien Bourdeauducq
|
c80378063a
|
add np_argmin/argmax to interpret_demo environment
|
2024-07-12 13:27:52 +02:00 |
abdul124
|
45e9360c4d
|
standalone: Add np_argmax and np_argmin tests
|
2024-07-12 18:19:56 +08:00 |
David Mak
|
f47cdec650
|
standalone: Fix output format of output_range
|
2024-07-09 13:55:48 +08:00 |
David Mak
|
d656880e44
|
standalone: Fix missing implementation for output_range
|
2024-07-09 13:53:50 +08:00 |
David Mak
|
25d2de67f7
|
standalone: Add output_range and tests
|
2024-07-09 04:44:40 +08:00 |
David Mak
|
9238a5e86e
|
standalone: Rename output_str to output_strln and add output_str
output_str is for outputting strings without newline, and the newly
introduced output_strln now has the old behavior of ending with a
newline.
|
2024-07-09 04:44:40 +08:00 |
David Mak
|
ba32fab374
|
standalone: Add demos for list arithmetic operators
|
2024-07-04 16:01:15 +08:00 |
abdul124
|
83154ef8e1
|
core/llvm_intrinsics: remove llvm.roundeven call from call_float_roundeven
|
2024-07-03 14:17:47 +08:00 |
lyken
|
5b11a1dbdd
|
core: support tuple and int32 input for np_empty, np_ones, and more
|
2024-06-27 14:30:17 +08:00 |
David Mak
|
5bade81ddb
|
standalone: Add test for multidim array index with one index
|
2024-06-20 12:50:30 +08:00 |
David Mak
|
07adfb2a18
|
standalone: Add *.ll to Gitignore list
|
2024-06-19 18:56:15 +08:00 |
Sébastien Bourdeauducq
|
f00e458f60
|
add test for class without __init__
|
2024-06-19 18:16:54 +08:00 |
lyken
|
95de0800b4
|
core/demo: fix typo in .gitignore
|
2024-06-13 16:05:33 +08:00 |
lyken
|
3d71c6a850
|
core/demo: gitignore to ignore *.bc & *.o
|
2024-06-13 16:00:23 +08:00 |
David Mak
|
53d44b9595
|
standalone: Add np_array tests
|
2024-06-11 16:44:36 +08:00 |
David Mak
|
23b2fee4e7
|
standalone: Add test case for ndarray slicing
|
2024-06-03 16:40:05 +08:00 |
David Mak
|
520e1adc56
|
core/builtins: Add np_minimum/np_maximum
|
2024-05-09 15:01:20 +08:00 |
David Mak
|
73e81259f3
|
core/builtins: Add np_min/np_max
|
2024-05-09 15:01:20 +08:00 |
David Mak
|
30c6cffbad
|
core/builtins: Refactored numpy builtins to accept scalar and ndarrays
|
2024-05-06 15:38:29 +08:00 |
David Mak
|
9566047241
|
standalone: Fix cbrt never tested
|
2024-05-06 13:21:54 +08:00 |
David Mak
|
c4dc36ae99
|
standalone: Add explicit `--` for delimiting run args vs NAC3 args
|
2024-05-06 13:21:54 +08:00 |
David Mak
|
847615fc2f
|
core: Implement numpy.matmul for 2D-2D ndarrays
|
2024-04-23 10:27:37 +08:00 |
David Mak
|
e0f440040c
|
core/expr: Implement negative indices for ndarray
|
2024-04-15 12:49:42 +08:00 |
David Mak
|
52c731c312
|
core: Implement Not/UAdd/USub for booleans
Not sure if this is deliberate or an oversight, but we implement it
anyway for consistency with other Python implementations.
|
2024-04-12 18:29:58 +08:00 |
David Mak
|
00d1b9be9b
|
core: Fix __inv__ for i8-based boolean operands
|
2024-04-12 15:35:54 +08:00 |
David Mak
|
a920fe0501
|
core: Implement elementwise comparison operators
|
2024-04-03 00:07:33 +08:00 |
David Mak
|
727a1886b3
|
core: Implement elementwise unary operators
|
2024-04-03 00:07:33 +08:00 |
David Mak
|
6af13a8261
|
core: Implement elementwise binary operators
Including immediate variants of these operators.
|
2024-04-03 00:07:33 +08:00 |
David Mak
|
2edc1de0b6
|
standalone: Update ndarray.py to output all elements in ndarrays
|
2024-03-07 14:59:13 +08:00 |
David Mak
|
96b7f29679
|
core: Implement `ndarray.fill`
|
2024-03-07 14:59:13 +08:00 |
David Mak
|
22e831cb76
|
core: Add test for indexing into ndarray
|
2024-02-19 17:13:10 +08:00 |
David Mak
|
5cecb2bb74
|
core: Fix Literal use in variable type annotation
|
2024-02-06 18:16:14 +08:00 |
David Mak
|
fef4b2a5ce
|
standalone: Disable tests requiring return of non-primitive values
|
2024-01-29 12:49:50 +08:00 |
David Mak
|
af95ba5012
|
standalone: Add debug flag to run_demo.sh
Allows running demos using the debug build instead of the (default)
release build.
|
2024-01-25 15:50:53 +08:00 |
David Mak
|
9c9756be33
|
standalone: Use size_t in demo.c
|
2024-01-25 15:50:53 +08:00 |
David Mak
|
c679474f5c
|
standalone: Fix redefinition of ndarray consumer functions
|
2024-01-17 09:38:13 +08:00 |
Sébastien Bourdeauducq
|
ab3fa05996
|
demo: use portable format strings
|
2024-01-10 18:35:35 +08:00 |
David Mak
|
140f8f8a08
|
core: Implement most ndarray-creation functions
|
2023-12-22 16:29:55 +08:00 |
David Mak
|
27fcf8926e
|
core: Implement ndarray constructor and numpy.empty
|
2023-12-22 16:29:54 +08:00 |
David Mak
|
f01d833d48
|
standalone: Add missing parenthesis
|
2023-12-20 15:15:47 +08:00 |