|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 5 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [Unreleased] |
| 8 | + |
| 9 | +## [0.12.0] - 2020-12-17 |
| 10 | +### Added |
| 11 | +- numba-dppy is a standalone package now. Added setup.py and conda recipe. |
| 12 | +- Offload diagnostics. |
| 13 | +- Controllable fallback. |
| 14 | +- Add flags to generate debug symbols. |
| 15 | +- Implementation of `np.linalg.eig`, `np.ndarray.sum`, `np.ndarray.max`, `np.ndarray.min`, `np.ndarray.mean`. |
| 16 | +- Two new re-write passes to convert NumPy calls into a pseudo `numba_dppy` call site to allow target-specific |
| 17 | + overload of NumPy functions. The rewrite passes is a temporary fix till Numba gains support for target-specific overlaods. |
| 18 | +- Updated to dpCtl 0.5.* and dpNP 0.4.* |
| 19 | + |
| 20 | +### Changed |
| 21 | +- The `dpnp` interface now uses Numba's `@overload` functionality as opposed to the previous `@lower_builtin` method. |
| 22 | +- Rename `DPPL` to `DPPY`. |
| 23 | +- Cleaned test code. |
| 24 | +- `DPPLTestCase` replaced with `unittest.TestCase`. |
| 25 | +- All tests and examples use `with device_context`. |
| 26 | +- Config environment variables starts with `NUMBA_DPPY_` |
| 27 | +(i.e. NUMBA_DPPY_SAVE_IR_FILES and NUMBA_DPPY_SPIRV_VAL) |
| 28 | +- Remove nested folder `dppl` in `tests`. |
| 29 | +- No dependency on `cffi`. |
| 30 | + |
| 31 | +### Removed |
| 32 | +- The old backup file. |
| 33 | + |
| 34 | +## NUMBA Version 0.48.0 + DPPY Version 0.3.0 (June 29, 2020) |
| 35 | + |
| 36 | +This release includes: |
| 37 | +- Caching of dppy.kernels which will improve performance. |
| 38 | +- Addition of support for Intel Advisor which will help in profiling applications. |
0 commit comments