|
3 | 3 |
|
4 | 4 | Release Notes |
5 | 5 | ============= |
| 6 | +1.1.0 (2025-01-30) |
| 7 | +------------------ |
| 8 | +### Features |
| 9 | +- Add support for nested functions and lambdas. |
| 10 | +- Add support for custom reduction via `ct.reduce()`. |
| 11 | +- Add `Array.slice(axis, start, stop)` to create a view of an array sliced along a single axis. |
| 12 | + The result shares memory with the original array (no data copy). |
| 13 | + |
| 14 | +### Bug Fixes |
| 15 | +- Fix reductions with multiple axes specified in non-increasing order. |
| 16 | +- Fix a bug when pattern matching (FusedMultiplyAdd) attempts to remove a value that is used by the new operation. |
| 17 | + |
| 18 | +### Enhancements |
| 19 | +- Allow assignments with type annotations. Type annotations are ignored. |
| 20 | +- Support constructors of built-in numeric types (bool, int, float), e.g., `float('inf')`. |
| 21 | +- Lift the ban on recursive helper function calls. Instead, add a limit on recursion depth. |
| 22 | + Add a new exception class `TileRecursionError`, thrown at compile time when the recursion limit |
| 23 | + is reached during function call inlining. |
| 24 | +- Improve error messages for type mismatches in control flow statements. |
| 25 | +- Relax type checking rules for variables that are assigned a different type |
| 26 | + depending on the branch taken: it is now only an error if the variable is used |
| 27 | + afterwards. |
| 28 | +- Stricter rules for potentially-undefined variable detection: if a variable |
| 29 | + is first assigned inside a `for` loop, and then used after the loop, |
| 30 | + it is now an error because the loop may take zero iterations, resulting |
| 31 | + in a use of an undefined variable. |
| 32 | +- Include a full cuTile traceback in error messages. Improve formatting of code locations; |
| 33 | + include function names, remove unnecessary characters to reduce line lengths. |
| 34 | +- Delay the loading of CUDA driver until kernel launch. |
| 35 | +- Expose the `TileError` base class in the public API. |
| 36 | +- Add `ct.abs()` for completeness. |
| 37 | + |
6 | 38 |
|
7 | 39 | 1.0.1 (2025-12-18) |
8 | 40 | ------------------ |
|
0 commit comments