ggml_pool_1d method
Pointer<ggml_tensor>
ggml_pool_1d(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - int op,
- int k0,
- int s0,
- 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,
);
}