Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
guocuimi committed Feb 4, 2025
1 parent 60a6136 commit 41dff63
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/kernels/attention/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cc_library(
mha_tile.h
mha_traits_sm80.h
mha_kernel_sm80.cuh
mha_launch_sm80.cuh
mha_dispatch_sm80.cuh
DEPS
cutlass
)
Expand Down
2 changes: 1 addition & 1 deletion src/kernels/attention/attn_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#include <ATen/cuda/CUDAContext.h>

#include "cute/layout.hpp"
#include "mha_dispatch_sm80.cuh"
#include "mha_params.h"
#include "static_dispatch.h"
#include "mha_launch_sm80.cuh"

namespace llm {
using namespace cute;
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/kernels/attention/mha_kernel_sm80_pagedkv_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#include <torch/torch.h>

#include "cute/layout.hpp"
#include "mha_kernel_sm80.cuh"
#include "mha_launch_sm80.cuh"
#include "mha_dispatch_sm80.cuh"
#include "mha_kernel_sm80.cuh" // IWYU pragma: keep
#include "mha_params.h"
#include "mha_ref.h"

Expand Down
4 changes: 2 additions & 2 deletions src/kernels/attention/mha_kernel_sm80_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include <cstdint>

#include "cute/layout.hpp"
#include "mha_kernel_sm80.cuh"
#include "mha_launch_sm80.cuh"
#include "mha_dispatch_sm80.cuh"
#include "mha_kernel_sm80.cuh" // IWYU pragma: keep
#include "mha_params.h"
#include "mha_ref.h"

Expand Down
4 changes: 2 additions & 2 deletions src/kernels/attention/mha_kernel_sm80_varlen_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#include <torch/torch.h>

#include "cute/layout.hpp"
#include "mha_kernel_sm80.cuh"
#include "mha_launch_sm80.cuh"
#include "mha_dispatch_sm80.cuh"
#include "mha_kernel_sm80.cuh" // IWYU pragma: keep
#include "mha_params.h"
#include "mha_ref.h"

Expand Down
4 changes: 2 additions & 2 deletions src/kernels/attention/mha_sm80_bench.cu
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include <cuda/std/chrono>
#include <nvbench/nvbench.cuh>

#include "mha_kernel_sm80.cuh"
#include "mha_launch_sm80.cuh"
#include "mha_dispatch_sm80.cuh"
#include "mha_kernel_sm80.cuh" // IWYU pragma: keep
#include "mha_params.h"

using namespace llm;
Expand Down
4 changes: 2 additions & 2 deletions src/kernels/attention/mha_sm80_pagedkv_bench.cu
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include <cuda/std/chrono>
#include <nvbench/nvbench.cuh>

#include "mha_kernel_sm80.cuh"
#include "mha_launch_sm80.cuh"
#include "mha_dispatch_sm80.cuh"
#include "mha_kernel_sm80.cuh" // IWYU pragma: keep
#include "mha_params.h"

using namespace llm;
Expand Down

0 comments on commit 41dff63

Please sign in to comment.