Skip to content

Commit 43623ad

Browse files
committed
fix typo
1 parent 53d4e83 commit 43623ad

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

onnxruntime/core/providers/cuda/llm/attention.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include "core/providers/cuda/cuda_common.h"
55
#include "core/providers/cpu/llm/attention_helper.h"
66
#include "core/providers/cuda/llm/attention.h"
7-
#include "core/providers/cuda/llm/attention_naive.h"
87
#include "contrib_ops/cuda/bert/attention_data.h"
98
#include "contrib_ops/cuda/bert/attention_impl.h"
109

onnxruntime/core/providers/cuda/llm/attention.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ namespace onnxruntime {
99
namespace cuda {
1010

1111
using namespace onnxruntime::cuda;
12-
1Code has alerts.Press enter to view.
1312

14-
template <typename T>
15-
class Attention final : public CudaKernel {
13+
template <typename T>
14+
class Attention final : public CudaKernel {
1615
public:
1716
Attention(const OpKernelInfo& info);
1817
Status ComputeInternal(OpKernelContext* context) const override;

0 commit comments

Comments
 (0)