removed debug option in CMakelist
All checks were successful
Build on RHEL9 / buildh (push) Successful in 2m36s

This commit is contained in:
mazzol_a 2025-04-22 16:16:31 +02:00
parent 177459c98a
commit d5f8daf194
2 changed files with 6 additions and 1 deletions

View File

@ -275,7 +275,7 @@ else()
if(CMAKE_BUILD_TYPE STREQUAL "Release")
message(STATUS "Release build")
target_compile_options(aare_compiler_flags INTERFACE -O3 -g)
target_compile_options(aare_compiler_flags INTERFACE -O3)
else()
message(STATUS "Debug build")
endif()

View File

@ -44,6 +44,11 @@ void define_ClusterVector(py::module &m, const std::string &typestr) {
auto *vec = new std::vector<Type>(self.sum());
return return_vector(vec);
})
.def("sum_2x2",
[](ClusterVector<ClusterType> &self) {
auto *vec = new std::vector<Type>(self.sum_2x2());
return return_vector(vec);
})
.def_property_readonly("size", &ClusterVector<ClusterType>::size)
.def("item_size", &ClusterVector<ClusterType>::item_size)
.def_property_readonly("fmt",