diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ff9a92b..a96a82a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) -project(CLIc VERSION 0.13.2) +project(CLIc VERSION 0.13.3) set(kernel_version_tag "3.0.0" CACHE STRING "clEsperanto kernel version tag") set(eigen_lib_version_tag "3.4.0" CACHE STRING "Eigen library version tag") diff --git a/clic/src/tier4/filter_label_by_values.cpp b/clic/src/tier4/filter_label_by_values.cpp index 1d8e53c5..830d3519 100644 --- a/clic/src/tier4/filter_label_by_values.cpp +++ b/clic/src/tier4/filter_label_by_values.cpp @@ -58,12 +58,12 @@ exclude_labels_with_map_values_out_of_range_func(const Device::Pointer & device, auto -exclude_labels_with_values_within_range_func(const Device::Pointer & device, - const Array::Pointer & src, - const Array::Pointer & values, - Array::Pointer dst, - float min_value_range, - float max_value_range) -> Array::Pointer +exclude_labels_with_map_values_within_range_func(const Device::Pointer & device, + const Array::Pointer & src, + const Array::Pointer & values, + Array::Pointer dst, + float min_value_range, + float max_value_range) -> Array::Pointer { return remove_labels_with_map_values_within_range_func(device, src, values, dst, min_value_range, max_value_range); }