ggml_is_permuted method

bool ggml_is_permuted(
  1. Pointer<ggml_tensor> tensor
)

Implementation

bool ggml_is_permuted(
  ffi.Pointer<ggml_tensor> tensor,
) {
  return _ggml_is_permuted(
    tensor,
  );
}