mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-21 21:52:11 +00:00
winml/ was previously excluded from lintrunner config. This change includes the directory and adds the clang-format config file specific to winml/ that fits existing style. --------- Signed-off-by: Justin Chu <justinchu@microsoft.com>
8 lines
291 B
C++
8 lines
291 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
namespace RuntimeParameters {
|
|
// Runtime parameters passed through CLI arguments
|
|
extern std::unordered_map<std::string, std::string> Parameters;
|
|
}// namespace RuntimeParameters
|