-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathfuncs.h
27 lines (21 loc) · 841 Bytes
/
funcs.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
27
#ifndef FUNCS_H
#define FUNCS_H
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <time.h>
#include "funcs.h"
#define CUDA_SAFE_CALL(call) { \
cudaError err = call; \
if( cudaSuccess != err) { \
fprintf(stderr, "Cuda error in file '%s' in line %i : %s.\n", \
__FILE__, __LINE__, cudaGetErrorString( err) ); \
exit(EXIT_FAILURE); \
} }
#define FRACTION_CEILING(numerator, denominator) ((numerator+denominator-1)/denominator)
typedef enum {RGB, GREY} color_t;
int write_all(int, uint8_t *, int);
int read_all(int, uint8_t *, int);
void Usage(int, char **, char **, int *, int *, int *, color_t *);
uint64_t micro_time(void);
#endif