Prepare 0.22.0#580
Merged
michalharakal merged 1 commit intodevelopfrom Apr 30, 2026
Merged
Conversation
- gradle.properties: drop -SNAPSHOT; RELEASE_SIGNING_ENABLED stays true. - CHANGELOG: add 0.22.0 section covering the native (FFM) CPU kernel provider rollout (5-PR staged delivery #571–#575) plus publishing/CI/docs polish (#576, #577, #579). Native Q4_K matmul is 4.17–5.87× faster than Panama Vector at LLM-typical shapes; native FP32 SGEMM 1.55–1.77× faster; zero-copy MemSeg path saves +20% wall-clock at 4096². Closes M5 milestone metric. - README: bump Quickstart coordinates to 0.22.0; rewrite "What's New" section around the native FFM provider. - .github/workflows/publish.yml: split into matrix build-native + publish so the published JAR carries libskainet_kernels for linux-x86_64 + macos-arm64 + windows-x86_64. Downstream devs on any of those three arches get a working native path on tag push without manual side-loading. Linux ARM64 stays unsupported (Kotlin/Native host limitation tracked in #577). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Release prep for SKaiNET 0.22.0, mirroring the 0.21.0 pattern (
5839da98— release branch merged into develop, then tagged from develop). Closes the M5 milestone of the JVM inference performance roadmap with a priority-100 native (FFM) CPU kernel provider.Headline numbers (Linux x86_64, JDK 21.0.10, gcc 13.3
-O3 -ffast-math)Native is single-threaded scalar C with
-O3 -ffast-math; gcc/clang auto-vec emit AVX2 / NEON FMA without hand-tuned intrinsics. Surfaces an interesting incidental finding: native single-threaded beats Panama'sparallelChunksmulti-threaded path on every measured Q4_K shape —parallelChunksdispatch overhead seems to dominate.What's in this release
vanniktech.mavenPublishand registers the new module inskainet-bomlinux-arm64from the cross-arch matrix (Kotlin/Native host limitation)Multi-arch publishing — Windows AMD64 supported out of the box
publish.ymlis now a two-phase flow:build-nativematrix onubuntu-latest,macos-14,windows-latest— each builds its host'slibskainet_kernelsand uploads as an artifact.publishon macOS — downloads all three artifacts, stages them into the native module's resources tree, runs./gradlew publish. Resulting JAR ships native libs for linux-x86_64, macos-arm64, and windows-x86_64. Windows AMD64 devs get a working native path with no manual side-loading.Limitations called out in CHANGELOG
linux aarch64as a HOST target. Linux ARM64 consumers fall back cleanly to Panama priority-50.com.gradleup.shadow:9.4.xneed thedoLastworkaround from SKaiNET-transformers PR Bump com.android.library from 8.12.1 to 8.12.2 #88 (mergeServiceFiles()bug). Spring Boot apps consuming via Maven are unaffected.After merge
Following the same flow as 0.21.0:
0.22.0on develop at the merge commit →publish.ymlfires on tag push, runs the matrix + publishes signed artifacts to Maven Central.VERSION_NAMEto0.23.0-SNAPSHOTon develop (separate trivial commit, mirroring4a3758af"Increment next version" after 0.21.0).🤖 Generated with Claude Code