ggml_conv_1d method

Pointer<ggml_tensor> ggml_conv_1d(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. Pointer<ggml_tensor> b,
  4. int s0,
  5. int p0,
  6. int d0,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_conv_1d(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
  int s0,
  int p0,
  int d0,
) {
  return _ggml_conv_1d(
    ctx,
    a,
    b,
    s0,
    p0,
    d0,
  );
}