ISCE_INSAR/contrib/PyCuAmpcor/src/debug.h

18 lines
268 B
C
Raw Normal View History

2019-01-16 19:40:08 +00:00
#ifndef __DEBUG_H
#define __DEBUG_H
#include <iostream>
#include <assert.h>
#include <stdio.h>
2019-01-16 19:40:08 +00:00
#ifndef NDEBUG
#define CUAMPCOR_DEBUG
#define debugmsg(msg) fprintf(stderr, msg)
#else
#define debugmsg(msg)
#endif //NDEBUG
2019-01-16 19:40:08 +00:00
#define CUDA_ERROR_CHECK
#endif //__DEBUG_H