ggml_arange method

Pointer<ggml_tensor> ggml_arange(
  1. Pointer<ggml_context> ctx,
  2. double start,
  3. double stop,
  4. double step,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_arange(
  ffi.Pointer<ggml_context> ctx,
  double start,
  double stop,
  double step,
) {
  return _ggml_arange(
    ctx,
    start,
    stop,
    step,
  );
}