| 1427 | } |
| 1428 | |
| 1429 | bool ggml_is_contiguous_1(const struct ggml_tensor * tensor) { |
| 1430 | return ggml_is_contiguous_n(tensor, 1); |
| 1431 | } |
| 1432 | |
| 1433 | bool ggml_is_contiguous_2(const struct ggml_tensor * tensor) { |
| 1434 | return ggml_is_contiguous_n(tensor, 2); |
no test coverage detected