merge
Build on RHEL9 / build (push) Failing after 2m36s
Build on RHEL8 / build (push) Failing after 3m10s
Run tests using data on local RHEL8 / build (push) Failing after 4m0s

This commit is contained in:
Erik Frojdh
2026-08-05 08:58:43 +02:00
10 changed files with 30 additions and 51 deletions
-1
View File
@@ -11,7 +11,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
-1
View File
@@ -18,7 +18,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
+2 -2
View File
@@ -27,8 +27,8 @@ void define_ClusterFileSink(py::module &m, const std::string &typestr) {
using ClusterType = Cluster<T, ClusterSizeX, ClusterSizeY, CoordType>;
//TODO! adapt to set pedestal type (needs templating of ClusterFileSink)
//or maybe access through base class?
// TODO! adapt to set pedestal type (needs templating of ClusterFileSink)
// or maybe access through base class?
py::class_<ClusterFileSink<ClusterType>>(m, class_name.c_str())
.def(py::init<ClusterFinderMT<ClusterType, uint16_t, double> *,
const std::filesystem::path &>())
-1
View File
@@ -18,7 +18,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
-4
View File
@@ -18,7 +18,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
@@ -48,9 +47,6 @@ void define_ClusterFinderMT(py::module &m, const std::string &typestr) {
[](ClusterFinderMT<ClusterType, uint16_t, pd_type> &self,
py::array_t<uint16_t> frame, uint64_t frame_number) {
auto view = make_view_2d(frame);
// Release the GIL for the copy and any free-list wait so a
// Python sink/consumer can keep draining concurrently.
py::gil_scoped_release release;
self.find_clusters(view, frame_number);
},
py::arg(), py::arg("frame_number") = 0)
-1
View File
@@ -16,7 +16,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
+1 -1
View File
@@ -1,5 +1,5 @@
#pragma once
#include <cstdint>
//Configure module wide pedestal type for cluster finding
// Configure module wide pedestal type for cluster finding
using pd_type = double;