hipfile 0.2.0.dev0__tar.gz → 0.2.0.dev1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,32 @@
1
+ # Changelog
2
+
3
+ All notable changes to the hipFile Python bindings will be documented in this file.
4
+
5
+ ## [Unreleased]
6
+
7
+ ## [0.2.0.dev1]
8
+
9
+ ### Fixed
10
+
11
+ - Release the Python GIL during all C function calls to prevent blocking other
12
+ threads during GPU IO operations. This resolves a performance regression
13
+ observed in multi-threaded applications (e.g., LMCache) when switching from
14
+ ctypes-based bindings to the Cython bindings.
15
+
16
+ ### Added
17
+
18
+ - Complete typing hints for the public API.
19
+
20
+ ## [0.2.0.dev0]
21
+
22
+ ### Added
23
+
24
+ - Initial release of the hipFile Python bindings.
25
+ - Cython-based low-level wrappers for the hipFile C API (`_hipfile.pyx`).
26
+ - High-level Pythonic API: `Driver`, `FileHandle`, `Buffer` classes with
27
+ context manager support.
28
+ - `hipMalloc` / `hipFree` helpers for GPU memory allocation.
29
+ - Error handling via `HipFileException` with hipFile and HIP driver error codes.
30
+ - `FileHandleType` and `OpError` enums.
31
+ - `get_version()` and `driver_get_properties()` utility functions.
32
+ - scikit-build-core based build system.
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: hipfile
3
- Version: 0.2.0.dev0
3
+ Version: 0.2.0.dev1
4
4
  Summary: Python bindings for hipFile — direct-to-GPU file IO via AMD Infinity Storage (AIS)
5
5
  Keywords: hipfile,rocm,amd,hip,AIS
6
6
  Maintainer-Email: AMD hipFile Team <hipfile-maintainer@amd.com>, Riley Dixon <riley.dixon@amd.com>
7
7
  License: MIT
8
8
  Classifier: Development Status :: 3 - Alpha
9
- Project-URL: homepage, https://github.com/ROCm/rocm-systems/tree/develop/projects/hipfile
9
+ Project-URL: Homepage, https://github.com/ROCm/rocm-systems/tree/develop/projects/hipfile
10
+ Project-URL: Changelog, https://github.com/ROCm/rocm-systems/blob/develop/projects/hipfile/python/CHANGELOG.md
10
11
  Requires-Python: >=3.10
11
12
  Description-Content-Type: text/markdown
12
13
 
File without changes
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
4
4
 
5
5
  [project]
6
6
  name = "hipfile"
7
- version = "0.2.0.dev0"
7
+ version = "0.2.0.dev1"
8
8
  classifiers = [
9
9
  "Development Status :: 3 - Alpha",
10
10
  ]
@@ -19,7 +19,8 @@ readme = "README.md"
19
19
  requires-python = ">=3.10"
20
20
 
21
21
  [project.urls]
22
- homepage = "https://github.com/ROCm/rocm-systems/tree/develop/projects/hipfile"
22
+ Homepage = "https://github.com/ROCm/rocm-systems/tree/develop/projects/hipfile"
23
+ Changelog = "https://github.com/ROCm/rocm-systems/blob/develop/projects/hipfile/python/CHANGELOG.md"
23
24
 
24
25
  [tool.scikit-build]
25
26
  cmake.build-type = "Release"
File without changes