Unverified Commit 5f6d10c1 authored by Michael Goin's avatar Michael Goin Committed by GitHub
Browse files

[CI/Build] Enforce style for C++ and CUDA code with `clang-format` (#4722)

parent 9b9a10d6
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -10,28 +10,18 @@ Copied from https://github.com/turboderp/exllamav2 ...@@ -10,28 +10,18 @@ Copied from https://github.com/turboderp/exllamav2
namespace vllm { namespace vllm {
namespace gptq { namespace gptq {
__forceinline__ __device__ void shuffle_8bit_4 __forceinline__ __device__ void shuffle_8bit_4(uint32_t* q, int stride) {}
(
uint32_t* q,
int stride
)
{
}
__forceinline__ __device__ void dequant_8bit_8 __forceinline__ __device__ void dequant_8bit_8(const uint32_t q_0,
(
const uint32_t q_0,
const uint32_t q_1, const uint32_t q_1,
half2 (&dq)[4], half2 (&dq)[4], int stride,
int stride, const uint32_t zero) {
const uint32_t zero
)
{
half dqh[8]; half dqh[8];
for (int i = 0; i < 4; i++) dqh[i ] = dq_ns(exb(q_0, i * 8, 0xff), zero); for (int i = 0; i < 4; i++) dqh[i] = dq_ns(exb(q_0, i * 8, 0xff), zero);
for (int i = 0; i < 4; i++) dqh[i + 4] = dq_ns(exb(q_1, i * 8, 0xff), zero); for (int i = 0; i < 4; i++) dqh[i + 4] = dq_ns(exb(q_1, i * 8, 0xff), zero);
for (int i = 0; i < 4; i++) dq[i] = __halves2half2(dqh[i * 2], dqh[i * 2 + 1]); for (int i = 0; i < 4; i++)
dq[i] = __halves2half2(dqh[i * 2], dqh[i * 2 + 1]);
} }
} // namespace gptq } // namespace gptq
......
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment