ggml_diag_mask_zero method

Pointer<ggml_tensor> ggml_diag_mask_zero(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int n_past
)

General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Implementation

ffi.Pointer<ggml_tensor> ggml_diag_mask_zero(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int n_past,
) {
  return _ggml_diag_mask_zero(ctx, a, n_past);
}