You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,39 @@
1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
## [Unreleased]
5
+
6
+
## [0.4.0] - 2020-11-04
7
+
### Added
8
+
- Device descriptors "max_compute_units", "max_work_item_dimensions", "max_work_item_sizes", "max_work_group_size", "max_num_sub_groups" and "aspects" for int64 atomics inside dpctl C API and inside the dpctl.SyclDevice class.
9
+
- MemoryUSM* classes moved to `dpctl.memory` module, added support for aligned allocation, added support for `prefetch` and `mem_advise` (sychronous) methods, implemented `copy_to_host`, `copy_from_host` and `copy_from_device` methods, pickling support, and zero-copy interoperability with Python objects which implement `__sycl_usm_array_inerface__` protocol.
10
+
- Helper scripts to generate API documentation for both C API and Python.
11
+
12
+
### Fixed
13
+
- Compiler warnings when building libDPPLSyclInterface and the Cython extensions.
14
+
15
+
### Removed
16
+
- The Legacy OpenCL interface.
17
+
18
+
## [0.3.8] - 2020-10-08
19
+
20
+
### Changed
21
+
- How the initial active queue is populated inside DPPLQueueMgr.
22
+
- dpctl.SyclQueueManager only reports the number of non-host platform.
23
+
- dpctl.SyclQueueManager now raises an exception if DPCTL C API returns a nullptr instead of a valid Sycl queue.
24
+
25
+
### Fixed
26
+
- Several crashes in cases where an OpenCL or Level Zero platform is not available.
27
+
- Fix failing platform test case. (#116)
28
+
- Properly skip tests when no OpenCL devices are available.
29
+
- Add skip tests to test_sycl_usm.py
30
+
- Fix Gtests configuration.
31
+
32
+
## [0.3.7] - 2020-10-08
33
+
34
+
### Fixed
35
+
- A crash on Windows due a Level Zero driver problem. Each device was getting enumerated twice. To handle the issue, we added a temporary fix to use only first device for each device type and backend (#118).
0 commit comments