ggml_arange method
Pointer<ggml_tensor>
ggml_arange(
- Pointer<
ggml_context> ctx, - double start,
- double stop,
- 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,
);
}