File size: 4,623 Bytes
f8c5b0d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#pragma once

// OpenCL Utils includes
#include "OpenCLUtils_Export.h"

// OpenCL Utils includes
#include <CL/Utils/ErrorCodes.h>

// STL includes
#include <stdio.h> // fprintf

// OpenCL includes
#include <CL/cl.h>

// RET = function returns error code
// PAR = functions sets error code in the paremeter

#ifdef _DEBUG

#define OCLERROR_RET(func, err, label)                                         \
    do                                                                         \
    {                                                                          \
        err = func;                                                            \
        if (err != CL_SUCCESS)                                                 \
        {                                                                      \
            cl_util_print_error(err);                                          \
            fprintf(stderr, "on line %d, in file %s\n%s\n", __LINE__,          \
                    __FILE__, #func);                                          \
            goto label;                                                        \
        }                                                                      \
    } while (0)

#define OCLERROR_PAR(func, err, label)                                         \
    do                                                                         \
    {                                                                          \
        func;                                                                  \
        if (err != CL_SUCCESS)                                                 \
        {                                                                      \
            cl_util_print_error(err);                                          \
            fprintf(stderr, "on line %d, in file %s\n%s\n", __LINE__,          \
                    __FILE__, #func);                                          \
            goto label;                                                        \
        }                                                                      \
    } while (0)

#define MEM_CHECK(func, err, label)                                            \
    do                                                                         \
    {                                                                          \
        if ((func) == NULL)                                                    \
        {                                                                      \
            err = CL_OUT_OF_HOST_MEMORY;                                       \
            cl_util_print_error(err);                                          \
            fprintf(stderr, "on line %d, in file %s\n%s\n", __LINE__,          \
                    __FILE__, #func);                                          \
            goto label;                                                        \
        }                                                                      \
    } while (0)

#else

#define OCLERROR_RET(func, err, label)                                         \
    do                                                                         \
    {                                                                          \
        err = func;                                                            \
        if (err != CL_SUCCESS) goto label;                                     \
    } while (0)

#define OCLERROR_PAR(func, err, label)                                         \
    do                                                                         \
    {                                                                          \
        func;                                                                  \
        if (err != CL_SUCCESS) goto label;                                     \
    } while (0)

#define MEM_CHECK(func, err, label)                                            \
    do                                                                         \
    {                                                                          \
        if ((func) == NULL)                                                    \
        {                                                                      \
            err = CL_OUT_OF_HOST_MEMORY;                                       \
            goto label;                                                        \
        }                                                                      \
    } while (0)

#endif

UTILS_EXPORT
void cl_util_print_error(cl_int error);