ggml_conv_1d_ph method
Pointer<ggml_tensor>
ggml_conv_1d_ph(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - Pointer<
ggml_tensor> b, - int s,
- int d,
conv_1d with padding = half
alias for ggml_conv_1d(a, b, s, a->ne0
/2, d)
Implementation
ffi.Pointer<ggml_tensor> ggml_conv_1d_ph(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
ffi.Pointer<ggml_tensor> b,
int s,
int d,
) {
return _ggml_conv_1d_ph(
ctx,
a,
b,
s,
d,
);
}