| 2074 | } |
| 2075 | |
| 2076 | size_t ggml_tensor_overhead(void) { |
| 2077 | return GGML_OBJECT_SIZE + GGML_TENSOR_SIZE; |
| 2078 | } |
| 2079 | |
| 2080 | bool ggml_is_transposed(const struct ggml_tensor * tensor) { |
| 2081 | return tensor->nb[0] > tensor->nb[1]; |
no outgoing calls
no test coverage detected