ggml_can_repeat method

bool ggml_can_repeat(
  1. Pointer<ggml_tensor> t0,
  2. Pointer<ggml_tensor> t1
)

Implementation

bool ggml_can_repeat(
  ffi.Pointer<ggml_tensor> t0,
  ffi.Pointer<ggml_tensor> t1,
) {
  return _ggml_can_repeat(
    t0,
    t1,
  );
}