BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
|
#include "cuda_runtime.h"
#include <algorithm>
#include <cstdint>
#include <deque>
#include <exception>
#include <sstream>
#include <string>
#include "cuda_structs.cuh"
Go to the source code of this file.
Classes | |
struct | EmbedSOMCUDAContext |
Data context wrapper for CUDA EmbedSOM. More... | |
struct | CudaError |
Helper exception for throwing sensible CUDA errors. More... | |
Macros | |
#define | CUCH(status) _cuda_check(status, __LINE__, __FILE__, #status) |
Macro wrapper for CUDA calls checking. More... | |
Functions | |
void | _cuda_check (cudaError_t status, int line, const char *srcFile, const char *errMsg=nullptr) |
CUDA error code check. More... | |
#define CUCH | ( | status | ) | _cuda_check(status, __LINE__, __FILE__, #status) |
Macro wrapper for CUDA calls checking.
Definition at line 140 of file embedsom_cuda.h.
|
inline |
CUDA error code check.
This is internal function used by CUCH macro.
Definition at line 124 of file embedsom_cuda.h.