We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3934a commit bd59969Copy full SHA for bd59969
src/onnxruntime.cc
@@ -316,8 +316,9 @@ ModelState::ModelState(TRITONBACKEND_Model* triton_model)
316
317
LOG_MESSAGE(
318
TRITONSERVER_LOG_VERBOSE,
319
- (std::string("Configuring ") +
320
- use_device_allocator_for_initializers_key + " to " + string_value)
+ (std::string("Configuring '") +
+ use_device_allocator_for_initializers_key + "' to '" +
321
+ string_value + "' for '" + Name() + "'")
322
.c_str());
323
THROW_IF_BACKEND_MODEL_ORT_ERROR(ort_api->AddSessionConfigEntry(
324
soptions, use_device_allocator_for_initializers_key,
0 commit comments