Skip to content

Commit 44a8f2f

Browse files
Release 0.5.10 (#725)
## Summary - Release 0.5.10 ## Testing Done Note: Tested with transformers 4.51.3, qwen2_vl tests break with latest 4.52.1 - Hardware Type: H100 - [x] run `make test` to ensure correctness - [x] run `make checkstyle` to ensure code style - [x] run `make test-convergence` to ensure convergence Co-authored-by: Vaibhav Jindal <[email protected]>
1 parent dd492af commit 44a8f2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "liger_kernel"
7-
version = "0.5.9"
7+
version = "0.5.10"
88
description = "Efficient Triton kernels for LLM Training"
99
urls = { "Homepage" = "https://github.com/linkedin/Liger-Kernel" }
1010
readme = { file = "README.md", content-type = "text/markdown" }

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def is_xpu_available():
6060

6161
try:
6262
result = subprocess.run("sycl-ls", check=True, capture_output=True, shell=True)
63-
if 'level_zero:gpu' in result.stdout.decode():
63+
if "level_zero:gpu" in result.stdout.decode():
6464
return True
6565
except (subprocess.SubprocessError, FileNotFoundError):
6666
pass

0 commit comments

Comments
 (0)