ggml_pool_1d method

Pointer<ggml_tensor> ggml_pool_1d(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int op,
  4. int k0,
  5. int s0,
  6. int p0,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_pool_1d(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int op,
  int k0,
  int s0,
  int p0,
) {
  return _ggml_pool_1d(
    ctx,
    a,
    op,
    k0,
    s0,
    p0,
  );
}