From 030a9611c240ca838fca0f0d789bb2105604166d Mon Sep 17 00:00:00 2001 From: Edward Chen <18449977+edgchen1@users.noreply.github.com> Date: Thu, 2 May 2024 15:38:11 -0700 Subject: [PATCH] Add `#pragma once` to matmul_scale_fusion.h. (#20538) --- onnxruntime/core/optimizer/matmul_scale_fusion.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/onnxruntime/core/optimizer/matmul_scale_fusion.h b/onnxruntime/core/optimizer/matmul_scale_fusion.h index 64f33f59df0c7..7fd757b430ecb 100644 --- a/onnxruntime/core/optimizer/matmul_scale_fusion.h +++ b/onnxruntime/core/optimizer/matmul_scale_fusion.h @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +#pragma once + #include "core/optimizer/graph_transformer.h" namespace onnxruntime {