/usr/include/cloog/stride.h is in libcloog-ppl-dev 0.16.1-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef CLOOG_STRIDE_H
#define CLOOG_STRIDE_H
#if defined(__cplusplus)
extern "C" {
#endif
/**
* Information about strides.
*/
struct cloogstride {
int references;
cloog_int_t stride; /**< The actual stride. */
cloog_int_t offset; /**< Offset of strided loop. */
cloog_int_t factor;
CloogConstraint *constraint;
};
typedef struct cloogstride CloogStride;
CloogStride *cloog_stride_alloc(cloog_int_t stride, cloog_int_t offset);
CloogStride *cloog_stride_alloc_from_constraint(cloog_int_t stride,
CloogConstraint *constraint, cloog_int_t factor);
CloogStride *cloog_stride_copy(CloogStride *stride);
void cloog_stride_free(CloogStride *stride);
#if defined(__cplusplus)
}
#endif
#endif
|