From 613ff2c9a193de7937d42be13d4a1fc1a9ceb48e Mon Sep 17 00:00:00 2001 From: Ralph Urlus Date: Fri, 1 Mar 2024 11:06:51 +0100 Subject: [PATCH] DOC: Update changelog for v1.1.0 --- CHANGES.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index f37d89f..177982f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,14 @@ # Release history: +## v1.1.0 + +Add new function to select top-n from blocks of a sparse matrix matmul. +Function will return a zipped matrix Z, where Z = [sorted top n results > lower_bound for each row of C_j], where C_j = A.dot(B_j) and where B has been split row-wise into sub-matrices B_j. + +### API + +- ENH: new function zip_sp_matmul_topn can zip matrices zip_j A.dot(B_j) + ## v1.0.0 This introduces major and potentially breaking changes to the API.