Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "allium-deck-python"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
license = "MIT"
publish = false
Expand All @@ -10,7 +10,7 @@ name = "_native"
crate-type = ["cdylib"]

[dependencies]
allium-deck = { version = "0.0.5", git = "https://github.com/empty-sekai/allium-deck.git", rev = "b799502a44a71488e82463ccfa607b2143600b23" }
allium-deck = { version = "0.0.6", git = "https://github.com/empty-sekai/allium-deck.git", rev = "5fd93b0ac299716c90380d416cfaeb3a01b036f4" }
pyo3 = { version = "0.23", features = ["abi3-py310"] }
serde_json = "1"

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ from sekai_deck_recommend_cpp import (
Masterdata, music metadata, and user data remain runtime inputs and are not
bundled into the wheel. The recommendation engine uses Allium's DFS search.

Version `0.0.3` tracks allium-deck `0.0.6`, including the optimized pool
construction path, explicit AVX-512 dispatch on supported x86-64 CPUs, and
portable scalar fallbacks for other targets. Performance depends on the CPU,
account data, activity rules, and candidate pool shape.

## API coverage

The `sekai_deck_recommend_cpp` interface includes the complete LunaBot deck
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "allium-sekai-deck"
version = "0.0.2"
version = "0.0.3"
description = "Precompiled Rust deck recommendation engine for Python and LunaBot integrations"
requires-python = ">=3.10,<4"
readme = "README.md"
Expand Down
Loading