| 103 | |
| 104 | |
| 105 | static inline int |
| 106 | is_contiguous( |
| 107 | npy_intp const *strides, PyArray_Descr *const *descriptors, int nargs) |
| 108 | { |
| 109 | for (int i = 0; i < nargs; i++) { |
| 110 | if (strides[i] != descriptors[i]->elsize) { |
| 111 | return 0; |
| 112 | } |
| 113 | } |
| 114 | return 1; |
| 115 | } |
| 116 | |
| 117 | |
| 118 | /** |
no outgoing calls
no test coverage detected