mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-26 22:35:43 +00:00
* Support test parameters through CLI arguments * Add WinML do Windows x86/ARM CI builds * Code style fixes * Update googletest Remove GPUTEST macros everywhere now that GTEST_SKIP is supported * Refactor main.cpp * Build scenario tests without DML
9 lines
244 B
C++
9 lines
244 B
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
namespace RuntimeParameters
|
|
{
|
|
// Runtime parameters passed through CLI arguments
|
|
extern std::unordered_map<std::string, std::string> Parameters;
|
|
}
|