Andreas
Andreas
This code snippet: `constexpr dtype_t has_typestring::dtype;` and the equivalent code for all other types, `double`, `long double`, `int`, etc. is problematic with C++11, because in C++11`constexpr` does not imply `inline`...
YES, you are right, thanks 🙏 indeed if I print the coordinates as below the searching identifies the closet point! ``` __global__ void find_closest_kernel(float4 queryPoint, float4 *data, int numData) {...
The reason that would be helpful is because the index that is stored in the initial array is needed to retrieve data from another dataset that is sorted in the...
OK, I managed to keep track of the original index via a custom data structure based on a `payLoad` parameter! The code snippet below shows the working approach. ``` struct...
Did you locate the path to libllama.so in your system after the installation and tried to append this path to LD_LIBRARY_PATH?
I tried the following: ``` template void kdtreeSearch::find_closet_host( int numQueryData, int *traceIndex, T const* x, T const* y, T const* z, T const* w ){ for( size_t queryIndex = 0;...
I solved the problem by adding: `from setuptools.command.test import *` at the beginning of file: `/segyio/python/setup.py`, and then, changed line `cmdclass = { 'test': setuptools.command.test.test }, ` to ` cmdclass...