Skip to content

Commit

Permalink
fix compilation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
vllmellm committed Dec 30, 2024
1 parent 0d11160 commit 73f257d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions csrc/rocm/attention.cu
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define DIVIDE_ROUND_UP(a, b) (((a) + (b) - 1) / (b))

// clean up this line later
#define __HIP__MI300_MI250__

#if defined(__HIP__MI300_MI250__) // TODO: Add NAVI support

Expand Down Expand Up @@ -249,7 +247,6 @@ __device__ __forceinline__ _B16x4 addx4(const _B16x4& inp1,
} else {
static_assert(false, "unsupported 16b dtype");
}
#endif
}

template <typename T, vllm::Fp8KVCacheDataType KV_DTYPE>
Expand Down

0 comments on commit 73f257d

Please sign in to comment.