diff --git a/src/identity.cc b/src/identity.cc index 8378235..9f5594d 100644 --- a/src/identity.cc +++ b/src/identity.cc @@ -1196,6 +1196,9 @@ TRITONBACKEND_ModelInstanceExecute( LOG_IF_ERROR( TRITONBACKEND_ResponseSetBoolParameter(responses[r], "param2", false), "failed setting boolean parameter"); + LOG_IF_ERROR( + TRITONBACKEND_ResponseSetBoolParameter(responses[r], "param3", 123.123), + "failed setting double parameter"); } uint64_t compute_end_ns = 0;