Skip to content

Commit

Permalink
Merge pull request #351 from clEsperanto/patch-0.13.3
Browse files Browse the repository at this point in the history
quick fix func name typo
  • Loading branch information
StRigaud authored Sep 29, 2024
2 parents c18001e + f69a8d7 commit 3df8570
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
12 changes: 6 additions & 6 deletions clic/src/tier4/filter_label_by_values.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 3df8570

Please sign in to comment.