Skip to content

Commit

Permalink
Bumped version for new release, added minor docfix.
Browse files Browse the repository at this point in the history
LTLA committed Jan 14, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent afeb827 commit a81de8e
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.24)

project(tatami_stats
VERSION 1.1.4
VERSION 1.1.5
DESCRIPTION "Matrix statistics for tatami"
LANGUAGES CXX)

6 changes: 3 additions & 3 deletions include/tatami_stats/utils.hpp
Original file line number Diff line number Diff line change
@@ -164,7 +164,7 @@ class LocalOutputBuffers {
* @param number Number of output buffers.
* @param start Index of the first objective vector in the contiguous block for this thread.
* @param length Number of objective vectors in the contiguous block for this thread.
* @param outfun Function that accepts an `Index_` specifying the index of an output buffer and returns a `Output_*` pointer to that buffer.
* @param outfun Function that accepts an `Index_` specifying the index of an output buffer in `[0, number)` and returns a `Output_*` pointer to that buffer.
* @param fill Initial value to fill the buffer.
*/
template<typename Index_>
@@ -195,7 +195,7 @@ class LocalOutputBuffers {
* @param number Number of output buffers.
* @param start Index of the first objective vector in the contiguous block for this thread.
* @param length Number of objective vectors in the contiguous block for this thread.
* @param outfun Function that accepts an `Index_` specifying the index of an output buffer and returns a `Output_*` pointer to that buffer.
* @param outfun Function that accepts an `Index_` specifying the index of an output buffer in `[0, number)` and returns a `Output_*` pointer to that buffer.
*/
template<typename Index_>
LocalOutputBuffers(size_t thread, size_t number, Index_ start, Index_ length, GetOutput_ outfun) :
@@ -227,7 +227,7 @@ class LocalOutputBuffers {
}

/**
* Transfer results from the local buffer to the global buffer (i.e., `output` in the constructor).
* Transfer results from the local buffer to the global buffer (i.e., `outfun(i)` for `i` in `[0, number)` from the constructor).
* For `thread = 0`, this will be a no-op.
*/
void transfer() {

0 comments on commit a81de8e

Please sign in to comment.