Merge branch 'api_cluster_vector' into api_extra

This commit is contained in:
Erik Fröjdh
2025-04-23 11:38:28 +02:00
committed by GitHub
2 changed files with 1 additions and 2 deletions

View File

@ -283,7 +283,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,7 +44,6 @@ 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);