ggml_unary_inplace method

Pointer<ggml_tensor> ggml_unary_inplace(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int op
)

Implementation

ffi.Pointer<ggml_tensor> ggml_unary_inplace(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int op,
) {
  return _ggml_unary_inplace(
    ctx,
    a,
    op,
  );
}