Sha256: 9eada916bbd8883c534b2322c23e4061dba3fd5b63f9a8b9200a99d2cf973cc8

Contents?: true

Size: 161 Bytes

Versions: 3

Compression:

Stored size: 161 Bytes

Contents

#define BONES_MIN(a,b) ((a<b) ? a : b)
#define BONES_MAX(a,b) ((a>b) ? a : b)
#define DIV_CEIL(a,b)  ((a+b-1)/b)
#define DIV_FLOOR(a,b) (a/b)

#include <math.h>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bones-compiler-1.6.0 skeletons/CPU-OPENMP/common/globals_kernel.c
bones-compiler-1.3.1 skeletons/CPU-OPENMP/common/globals_kernel.c
bones-compiler-1.1.0 skeletons/CPU-OPENMP/common/globals_kernel.c