ggml_abort_callback typedef

ggml_abort_callback = Pointer<NativeFunction<Bool Function(Pointer<Void> data)>>

Abort callback If not NULL, called before ggml computation If it returns true, the computation is aborted

Implementation

typedef ggml_abort_callback = ffi
    .Pointer<ffi.NativeFunction<ffi.Bool Function(ffi.Pointer<ffi.Void> data)>>;