BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
embedsom_cuda.h
Go to the documentation of this file.
1/*
2The MIT License
3
4Copyright (c) 2021 Martin Krulis
5 Mirek Kratochvil
6 Sona Molnarova
7
8Permission is hereby granted, free of charge,
9to any person obtaining a copy of this software and
10associated documentation files (the "Software"), to
11deal in the Software without restriction, including
12without limitation the rights to use, copy, modify,
13merge, publish, distribute, sublicense, and/or sell
14copies of the Software, and to permit persons to whom
15the Software is furnished to do so,
16subject to the following conditions:
17
18The above copyright notice and this permission notice
19shall be included in all copies or substantial portions of the Software.
20
21THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
25ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28*/
29
30#ifndef EMBEDSOM_CUDA_H
31#define EMBEDSOM_CUDA_H
32
33#include "cuda_runtime.h"
34
35#include <algorithm>
36#include <cstdint>
37#include <deque>
38#include <exception>
39#include <sstream>
40#include <string>
41
42#include "cuda_structs.cuh"
43
44/** Data context wrapper for CUDA EmbedSOM
45 *
46 * A compound "context" object for the EmbedSOM computation in CUDA, mainly
47 * holding some required preallocated memory buffers.
48 */
50{
52
53 float *data, *lm_hi, *lm_lo, *points;
55
57 : ndata(0)
58 , nlm_hi(0)
59 , nlm_lo(0)
60 , npoints(0)
61 , nknns(0)
62 , data(nullptr)
63 , lm_hi(nullptr)
64 , lm_lo(nullptr)
65 , points(nullptr)
66 , knns(nullptr)
67 {
68 }
69
71
72 /** Run EmbedSOM on the given data. */
73 void run(size_t n,
74 size_t g,
75 size_t d,
76 float boost,
77 size_t k,
78 float adjust,
79 const float *hidim_points,
80 const float *hidim_landmarks,
81 const float *lodim_landmarks,
82 float *lodim_points);
83
84private:
85 /** Execute the CUDA kNN within the context */
86 void runKNNKernel(size_t d, size_t n, size_t g, size_t adjusted_k);
87
88 /** Execute the CUDA projection kernel atop the context */
89 void runProjectionKernel(size_t d,
90 size_t n,
91 size_t g,
92 size_t k,
93 float boost,
94 float adjust);
95};
96
97/** Helper exception for throwing sensible CUDA errors. */
98struct CudaError : std::exception
99{
100 std::string msg; /// message
101 cudaError_t status; /// reported cuda status, may be examined separately
102
103 CudaError(cudaError_t status = cudaSuccess)
104 : status(status)
105 {
106 }
107 CudaError(const char *msg, cudaError_t status = cudaSuccess)
108 : msg(msg)
109 , status(status)
110 {
111 }
112 CudaError(const std::string &msg, cudaError_t status = cudaSuccess)
113 : msg(msg)
114 , status(status)
115 {
116 }
117 virtual ~CudaError() noexcept {}
118
119 virtual const char *what() const throw() { return msg.c_str(); }
120};
121
122/** CUDA error code check. This is internal function used by CUCH macro. */
123inline void
124_cuda_check(cudaError_t status,
125 int line,
126 const char *srcFile,
127 const char *errMsg = nullptr)
128{
129 if (status != cudaSuccess) {
130 std::stringstream str_s;
131 str_s << "CUDA Error (" << status << "): " << cudaGetErrorString(status)
132 << "\n"
133 << "at " << srcFile << "[" << line << "]: " << errMsg;
134
135 throw(CudaError(str_s.str(), status));
136 }
137}
138
139/** Macro wrapper for CUDA calls checking. */
140#define CUCH(status) _cuda_check(status, __LINE__, __FILE__, #status)
141
142#endif // EMBEDSOM_CUDA_H
void _cuda_check(cudaError_t status, int line, const char *srcFile, const char *errMsg=nullptr)
CUDA error code check.
Helper exception for throwing sensible CUDA errors.
Definition: embedsom_cuda.h:99
CudaError(const std::string &msg, cudaError_t status=cudaSuccess)
CudaError(cudaError_t status=cudaSuccess)
reported cuda status, may be examined separately
cudaError_t status
message
std::string msg
CudaError(const char *msg, cudaError_t status=cudaSuccess)
virtual const char * what() const
virtual ~CudaError() noexcept
Data context wrapper for CUDA EmbedSOM.
Definition: embedsom_cuda.h:50
void runKNNKernel(size_t d, size_t n, size_t g, size_t adjusted_k)
Execute the CUDA kNN within the context.
void runProjectionKernel(size_t d, size_t n, size_t g, size_t k, float boost, float adjust)
Execute the CUDA projection kernel atop the context.
void run(size_t n, size_t g, size_t d, float boost, size_t k, float adjust, const float *hidim_points, const float *hidim_landmarks, const float *lodim_landmarks, float *lodim_points)
Run EmbedSOM on the given data.
knn_entry< float > * knns
Definition: embedsom_cuda.h:54