added static assert + minor docs
Build on RHEL9 / build (push) Failing after 2m57s
Build on RHEL8 / build (push) Failing after 3m27s
Run tests using data on local RHEL8 / build (push) Failing after 4m6s

This commit is contained in:
Erik Frojdh
2026-09-02 12:15:21 +02:00
parent 1a5c105161
commit d6388661bc
5 changed files with 9 additions and 3 deletions
+1
View File
@@ -91,6 +91,7 @@ void reduce_to_3x3(py::module &m) {
py::return_value_policy::move, py::arg("cluster"), R"doc(
Return the 3x3 block around the cluster's center index.
The input cluster dimensions must both be odd.
The input coordinates are preserved and output data is stored in
row-major order.
)doc");
+1
View File
@@ -225,6 +225,7 @@ void define_3x3_reduction(py::module &m) {
},
R"doc(
Reduce every cluster to the 3x3 block around its center index.
The input cluster dimensions must both be odd.
Returns a new ClusterVector; cluster order, coordinates, and frame
number are preserved.
)doc",