whisper_decode_with_state method

int whisper_decode_with_state(
  1. Pointer<whisper_context> ctx,
  2. Pointer<whisper_state> state,
  3. Pointer<whisper_token> tokens,
  4. int n_tokens,
  5. int n_past,
  6. int n_threads,
)

Implementation

int whisper_decode_with_state(
  ffi.Pointer<whisper_context> ctx,
  ffi.Pointer<whisper_state> state,
  ffi.Pointer<whisper_token> tokens,
  int n_tokens,
  int n_past,
  int n_threads,
) {
  return _whisper_decode_with_state(
    ctx,
    state,
    tokens,
    n_tokens,
    n_past,
    n_threads,
  );
}