-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.h
27 lines (23 loc) · 1 KB
/
utils.h
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
#include "time.h"
// divup calculates n / m and would round it up if the remainder is non-zero.
int divup(int n, int m) {
return n % m == 0 ? n/m : n/m + 1;
}
// getTime gets the local time in nanoseconds.
long getTime() {
struct timespec ts;
timespec_get(&ts, TIME_UTC);
return (long)ts.tv_sec * 1000000000L + ts.tv_nsec;
}
// CHECK macro from Grossman and McKercher, "Professional CUDA C Programming"
#define CHECK(call) \
{ \
const cudaError_t error = call; \
if (error != cudaSuccess) \
{ \
printf("Error: %s:%d, ", __FILE__, __LINE__); \
printf("code:%d, reason: %s \n", \
error, cudaGetErrorString(error)); \
exit(1); \
} \
}