ggml_permute method

Pointer<ggml_tensor> ggml_permute(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int axis0,
  4. int axis1,
  5. int axis2,
  6. int axis3,
)

GeneralAiSpeechToTextLibraryWhisper Binding By General Corporation & Global Corporation & General Developer

Implementation

ffi.Pointer<ggml_tensor> ggml_permute(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int axis0,
  int axis1,
  int axis2,
  int axis3,
) {
  return _ggml_permute(ctx, a, axis0, axis1, axis2, axis3);
}