mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-29 23:06:41 +00:00
Fix regression in perf test runner (#18139)
This commit is contained in:
parent
0e34100484
commit
8ebdd3bbca
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ OnnxRuntimeTestSession::OnnxRuntimeTestSession(Ort::Env& env, std::random_device
|
|||
|
||||
buffer.emplace_back("do_copy_in_default_stream");
|
||||
option_keys.push_back(buffer.back().c_str());
|
||||
buffer.emplace_back(performance_test_config.run_config.do_cuda_copy_in_separate_stream ? "1" : "0");
|
||||
buffer.emplace_back(!performance_test_config.run_config.do_cuda_copy_in_separate_stream ? "1" : "0");
|
||||
option_values.push_back(buffer.back().c_str());
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
|
|
|||
Loading…
Reference in a new issue