ggml_step_inplace method

Pointer<ggml_tensor> ggml_step_inplace(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a
)

Implementation

ffi.Pointer<ggml_tensor> ggml_step_inplace(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
) {
  return _ggml_step_inplace(
    ctx,
    a,
  );
}