BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
cuda_structs.cuh
Go to the documentation of this file.
1/*
2The MIT License
3
4Copyright (c) 2021 Adam Smelko
5 Mirek Kratochvil
6
7Permission is hereby granted, free of charge,
8to any person obtaining a copy of this software and
9associated documentation files (the "Software"), to
10deal in the Software without restriction, including
11without limitation the rights to use, copy, modify,
12merge, publish, distribute, sublicense, and/or sell
13copies of the Software, and to permit persons to whom
14the Software is furnished to do so,
15subject to the following conditions:
16
17The above copyright notice and this permission notice
18shall be included in all copies or substantial portions of the Software.
19
20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
22OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
24ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27*/
28
29#ifndef CUDA_STRUCTS_H
30#define CUDA_STRUCTS_H
31
32#include "cuda_runtime.h"
33
34#include <cfloat>
35#include <cstdint>
36#include <limits>
37
38#ifdef __CUDACC__
39#define CUDA_CALLABLE_MEMBER __host__ __device__
40#else
41#define CUDA_CALLABLE_MEMBER
42#endif
43
44/** A structure for packing neighbor index and distance for kNN search. */
45template<typename F>
47{
49 uint32_t index;
50
52 {
53 return distance < rhs.distance ||
54 (distance == rhs.distance && index < rhs.index);
55 }
56
58 {
59 return rhs < *this;
60 }
61
63 {
64 return !(rhs < *this);
65 }
66
68 {
69 return !(*this < rhs);
70 }
71};
72
73template<unsigned N, typename T>
74struct Vec
75{
76};
77template<>
78struct Vec<2, float>
79{
80 using Type = float2;
81};
82template<>
83struct Vec<4, float>
84{
85 using Type = float4;
86};
87template<>
88struct Vec<2, double>
89{
90 using Type = double2;
91};
92template<>
93struct Vec<4, double>
94{
95 using Type = double4;
96};
97
98template<typename F>
99constexpr F valueMax;
100
101template<>
102constexpr float valueMax<float> = FLT_MAX;
103template<>
104constexpr double valueMax<double> = DBL_MAX;
105
106#endif
constexpr F valueMax
constexpr float valueMax< float >
constexpr double valueMax< double >
#define CUDA_CALLABLE_MEMBER
A structure for packing neighbor index and distance for kNN search.
CUDA_CALLABLE_MEMBER bool operator>=(const knn_entry &rhs) const
CUDA_CALLABLE_MEMBER bool operator<(const knn_entry &rhs) const
uint32_t index
CUDA_CALLABLE_MEMBER bool operator>(const knn_entry &rhs) const
CUDA_CALLABLE_MEMBER bool operator<=(const knn_entry &rhs) const
F distance