Skip to content

Commit

Permalink
Use correct API
Browse files Browse the repository at this point in the history
  • Loading branch information
fpetrini15 committed Dec 30, 2023
1 parent 9dd432d commit 4d7fb9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/identity.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,8 @@ TRITONBACKEND_ModelInstanceExecute(
TRITONBACKEND_ResponseSetBoolParameter(responses[r], "param2", false),
"failed setting boolean parameter");
LOG_IF_ERROR(
TRITONBACKEND_ResponseSetBoolParameter(responses[r], "param3", 123.123),
TRITONBACKEND_ResponseSetDoubleParameter(
responses[r], "param3", 123.123),
"failed setting double parameter");
}

Expand Down

0 comments on commit 4d7fb9d

Please sign in to comment.