| 1419 | } |
| 1420 | |
| 1421 | bool ggml_is_contiguous(const struct ggml_tensor * tensor) { |
| 1422 | return ggml_is_contiguous_0(tensor); |
| 1423 | } |
| 1424 | |
| 1425 | bool ggml_is_contiguous_0(const struct ggml_tensor * tensor) { |
| 1426 | return ggml_is_contiguous_n(tensor, 0); |
no test coverage detected