ggml_conv_1d_dw_ph method
Pointer<ggml_tensor>
ggml_conv_1d_dw_ph(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - Pointer<
ggml_tensor> b, - int s0,
- int d0,
Implementation
ffi.Pointer<ggml_tensor> ggml_conv_1d_dw_ph(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
ffi.Pointer<ggml_tensor> b,
int s0,
int d0,
) {
return _ggml_conv_1d_dw_ph(
ctx,
a,
b,
s0,
d0,
);
}