llama_set_state_data method

int llama_set_state_data(
  1. Pointer<llama_context> ctx,
  2. Pointer<Uint8> src
)

Set the state reading from the specified address Returns the number of bytes read

Implementation

int llama_set_state_data(
  ffi.Pointer<llama_context> ctx,
  ffi.Pointer<ffi.Uint8> src,
) {
  return _llama_set_state_data(
    ctx,
    src,
  );
}