Skip to content

Commit 63a254f

Browse files
author
TinySemVer
committed
Release: v7.7.0 [skip ci]
### Minor - Add: Rust trait reorganisation, bit reductions, macro purge (3121737) - Add: Tensor `fill_zeros`, `fill`, `copy`, popcount-style `BitwiseReductions` (0127460) ### Patch - Fix: `const` friendly & rank-aware tensor ops (ef37cf9) - Improve: Harden tensor shapes against `-flto` (3eca0d2) - Improve: Accept any integral in sub_byte_ref::operator=, clamp out-of-range (f3004f6) - Improve: Collapse per-lane finalize args to one pointer-to-vec shape (a35ddcd)
1 parent b7c4823 commit 63a254f

12 files changed

Lines changed: 18 additions & 18 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "NumKong: 2000 Mixed Precision Kernels For All"
33
message: "If you use this software, please cite it as below."
44
type: software
55
license: Apache-2.0
6-
version: 7.6.0
6+
version: 7.7.0
77
repository-code: https://github.com/ashvardanian/NumKong
88
url: https://ashvardanian.com/posts/numkong/
99
abstract: >-

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ endif ()
8585
#
8686
project(
8787
numkong
88-
VERSION 7.6.0
88+
VERSION 7.7.0
8989
LANGUAGES C CXX
9090
DESCRIPTION "Portable mixed-precision BLAS-like vector math library for x86 and ARM"
9191
HOMEPAGE_URL "https://github.com/ashvardanian/NumKong"

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ name = "numkong"
1919
readme = "rust/README.md"
2020
repository = "https://github.com/ashvardanian/NumKong"
2121
rust-version = "1.64" # Introduced Core C FFI in stable Rust
22-
version = "7.6.0"
22+
version = "7.7.0"
2323

2424
[lib]
2525
name = "numkong"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.6.0
1+
7.7.0

include/numkong/capabilities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
#include "numkong/types.h" // `nk_u64_t`, `NK_DEFINED_LINUX_`
9696

9797
#define NK_VERSION_MAJOR 7
98-
#define NK_VERSION_MINOR 6
98+
#define NK_VERSION_MINOR 7
9999
#define NK_VERSION_PATCH 0
100100

101101
/**

javascript/@numkong-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@numkong/darwin-arm64",
3-
"version": "7.6.0",
3+
"version": "7.7.0",
44
"description": "macOS arm64 native binary for NumKong",
55
"repository": {
66
"type": "git",

javascript/@numkong-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@numkong/darwin-x64",
3-
"version": "7.6.0",
3+
"version": "7.7.0",
44
"description": "macOS x64 native binary for NumKong",
55
"repository": {
66
"type": "git",

javascript/@numkong-linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@numkong/linux-arm64",
3-
"version": "7.6.0",
3+
"version": "7.7.0",
44
"description": "Linux arm64 native binary for NumKong",
55
"repository": {
66
"type": "git",

javascript/@numkong-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@numkong/linux-x64",
3-
"version": "7.6.0",
3+
"version": "7.7.0",
44
"description": "Linux x64 native binary for NumKong",
55
"repository": {
66
"type": "git",

javascript/@numkong-win32-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@numkong/win32-arm64",
3-
"version": "7.6.0",
3+
"version": "7.7.0",
44
"description": "Windows arm64 native binary for NumKong",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)