Skip to content

Commit

Permalink
Support Double-Type Inference Request/Response Parameters (#28)
Browse files Browse the repository at this point in the history
* Support Double-Type Infer/Response Parameters
  • Loading branch information
fpetrini15 authored Feb 1, 2024
1 parent 684c795 commit d03ee61
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/identity.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1196,6 +1196,10 @@ TRITONBACKEND_ModelInstanceExecute(
LOG_IF_ERROR(
TRITONBACKEND_ResponseSetBoolParameter(responses[r], "param2", false),
"failed setting boolean parameter");
LOG_IF_ERROR(
TRITONBACKEND_ResponseSetDoubleParameter(
responses[r], "param3", 123.123),
"failed setting double parameter");
}

uint64_t compute_end_ns = 0;
Expand Down

0 comments on commit d03ee61

Please sign in to comment.