ggml_build_forward_expand method

void ggml_build_forward_expand(
  1. Pointer<ggml_cgraph> cgraph,
  2. Pointer<ggml_tensor> tensor
)

automatic differentiation

Implementation

void ggml_build_forward_expand(
  ffi.Pointer<ggml_cgraph> cgraph,
  ffi.Pointer<ggml_tensor> tensor,
) {
  return _ggml_build_forward_expand(
    cgraph,
    tensor,
  );
}