ggml_swiglu_oai method

Pointer<ggml_tensor> ggml_swiglu_oai(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. Pointer<ggml_tensor> b,
  4. double alpha,
  5. double limit,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_swiglu_oai(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
  double alpha,
  double limit,
) {
  return _ggml_swiglu_oai(
    ctx,
    a,
    b,
    alpha,
    limit,
  );
}