| 1393 | } |
| 1394 | |
| 1395 | bool ggml_is_transposed(const struct ggml_tensor * tensor) { |
| 1396 | return tensor->nb[0] > tensor->nb[1]; |
| 1397 | } |
| 1398 | |
| 1399 | static bool ggml_is_contiguous_n(const struct ggml_tensor * tensor, int n) { |
| 1400 | size_t next_nb = ggml_type_size(tensor->type); |
no outgoing calls
no test coverage detected