| 2078 | } |
| 2079 | |
| 2080 | bool ggml_is_transposed(const struct ggml_tensor * tensor) { |
| 2081 | return tensor->nb[0] > tensor->nb[1]; |
| 2082 | } |
| 2083 | |
| 2084 | bool ggml_is_contiguous(const struct ggml_tensor * tensor) { |
| 2085 | static_assert(GGML_MAX_DIMS == 4, "GGML_MAX_DIMS is not 4 - update this function"); |
no outgoing calls
no test coverage detected