Skip to content

Commit

Permalink
Version to v0.7.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaybro committed Aug 15, 2021
1 parent 7f69bcc commit a7f8c5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.12)

project(pico_tree
LANGUAGES CXX
VERSION 0.7.3
VERSION 0.7.4
DESCRIPTION "PicoTree is a C++ header only library with Python bindings for nearest neighbor searches and range searches using a KdTree."
HOMEPAGE_URL "https://github.com/Jaybro/pico_tree")

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ See the table below to get an impression of the performance provided by the [KdT
| [SciPy KDTree][spkd] v1.6.3 | ... | 5.0s | ... | 547.2s |
| [Scikit-learn KDTree][skkd] 0.22.2 | ... | 12.2s | ... | 44.5s |
| [OpenCV FLANN][cvfn] 4.5.2 | 1.9s | ... | 4.7s | ... |
| PicoTree KdTree v0.7.3 | 0.9s | 1.1s | 2.8s | 3.3s |
| PicoTree KdTree v0.7.4 | 0.9s | 1.0s | 2.8s | 3.1s |

It compares the performance of the build and query algorithms using two [LiDAR](./docs/benchmark.md) based point clouds of sizes 7733372 and 7200863. The first is used to compare build times and both are used to compare query times. All benchmarks were generated with the following parameters: `max_leaf_size=10`, `knn=1` and `OMP_NUM_THREADS=1`. Note that a different C++ back-end was used for each of the `Knn C++` and `Knn Python` benchmarks. This means that they shouldn't be compared directly. See the [Python comparison](./examples/python/kd_tree.py) for more details. A more detailed [C++ comparison](./docs/benchmark.md) of PicoTree is available with respect to [nanoflann][nano].

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def compile_cmake_args():

setup(name='pico_tree',
# The same as the CMake project version.
version='0.7.3',
version='0.7.4',
description='PicoTree Python Bindings',
author='Jonathan Broere',
url='https://github.com/Jaybro/pico_tree',
Expand Down

0 comments on commit a7f8c5e

Please sign in to comment.