Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@ a given model instance and to manage the user-defined state associated
with the model (for more information see [backend
lifecycles](#backend-lifecycles)).

A backend can optionally implement TRITONBACKEND_ModelInstanceReady. This
function is called by the Triton server's ready endpoint to check whether
a model instance is ready to handle requests. The function returns
`nullptr` (indicating success) if the instance is ready, or a
`TRITONSERVER_Error` if the instance is not ready.

The backend must take into account threading concerns when
implementing TRITONBACKEND_ModelInstanceInitialize,
TRITONBACKEND_ModelInstanceFinalize and
Expand Down
Loading