Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ModelMetadataResponse: add new card field #87

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 9 additions & 2 deletions protobuf/grpc_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,13 @@ message ModelMetadataResponse
//@@ The model's outputs.
//@@
repeated TensorMetadata outputs = 5;

//@@
//@@ .. cpp:var:: string card
//@@
//@@ The model card.
//@@
string card = 6;
}

//@@
Expand Down Expand Up @@ -923,7 +930,7 @@ message InferStatistics
//@@ .. cpp:var:: StatisticDuration queue
//@@
//@@ The count and cumulative duration that inference requests wait in
//@@ scheduling or other queues. The "queue" count and cumulative
//@@ scheduling or other queues. The "queue" count and cumulative
//@@ duration includes cache hits.
//@@
StatisticDuration queue = 3;
Expand Down Expand Up @@ -965,7 +972,7 @@ message InferStatistics
//@@ and extract output tensor data from the Response Cache on a cache
//@@ hit. For example, this duration should include the time to copy
//@@ output tensor data from the Response Cache to the response object.
//@@ On cache hits, triton does not need to go to the model/backend
//@@ On cache hits, triton does not need to go to the model/backend
//@@ for the output tensor data, so the "compute_input", "compute_infer",
//@@ and "compute_output" fields are not updated. Assuming the response
//@@ cache is enabled for a given model, a cache hit occurs for a
Expand Down