Skip to content

Commit c93a645

Browse files
committed
resolve unused variables error
1 parent 28d9657 commit c93a645

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

onnxruntime/core/providers/openvino/backend_manager.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ static bool IsQDQGraph(const onnxruntime::GraphViewer& graph_viewer) {
320320
return false;
321321
}
322322

323-
static void DumpOpenVINOEPModel(const std::filesystem::path& onnx_model_path_name,
324-
ONNX_NAMESPACE::ModelProto* model_proto,
325-
const onnxruntime::Node& fused_node) {
323+
static void DumpOpenVINOEPModel([[maybe_unused]] const std::filesystem::path& onnx_model_path_name,
324+
[[maybe_unused]] ONNX_NAMESPACE::ModelProto* model_proto,
325+
[[maybe_unused]] const onnxruntime::Node& fused_node) {
326326
#ifndef NDEBUG
327327
if (openvino_ep::backend_utils::IsDebugEnabled()) {
328328
auto model_name = onnx_model_path_name.empty() ? "unknown.onnx" : onnx_model_path_name.filename();

0 commit comments

Comments
 (0)