Skip to content

Commit 15d7ae0

Browse files
[Ops][Misc] Fix file header and include guard in hc_post_tiling (vllm-project#11298)
### What this PR does / why we need it? This PR corrects the file header comment in `hc_post_tiling.cpp` and the `#endif` include guard comment in `hc_post_tiling.h` to match the actual file names, replacing leftover references to `gather_selection_kv_cache_tiling`. - vLLM version: v0.23.0 - vLLM main: vllm-project/vllm@a30addc --------- Signed-off-by: Vadim <87440656+KlyzhenkoVadim@users.noreply.github.com>
1 parent acad18f commit 15d7ae0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

csrc/moe/hc_post/op_host/hc_post_tiling.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
/*!
12-
* \file gather_selection_kv_cache_tiling.cpp
12+
* \file hc_post_tiling.cpp
1313
* \brief
1414
*/
1515

@@ -228,4 +228,4 @@ IMPL_OP_OPTILING(HcPost)
228228
.Tiling(Tiling4HcPost)
229229
.TilingParse<HcPostCompileInfo>(TilingPrepare4HcPost);
230230

231-
} // namespace optiling
231+
} // namespace optiling

csrc/moe/hc_post/op_host/hc_post_tiling.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ class HcPostTiling {
109109

110110
} // namespace optiling
111111

112-
#endif // GATHER_SELECTION_KV_CACHE_TILING_H_
112+
#endif // HC_POST_TILING_H_

0 commit comments

Comments
 (0)