"vllm/vscode:/vscode.git/clone" did not exist on "07ea184f00c1dc2dbc163efc7dc1ac91e98d9ed5"
Commit d1787c31 authored by zhuwenwen's avatar zhuwenwen
Browse files

fix build error

parent e661d594
...@@ -183,7 +183,7 @@ set(VLLM_EXT_SRC ...@@ -183,7 +183,7 @@ set(VLLM_EXT_SRC
"csrc/layernorm_kernels.cu" "csrc/layernorm_kernels.cu"
"csrc/transpose_kernels.cu" "csrc/transpose_kernels.cu"
"csrc/quantization/squeezellm/quant_cuda_kernel.cu" "csrc/quantization/squeezellm/quant_cuda_kernel.cu"
# "csrc/quantization/gptq/q_gemm.cu" "csrc/quantization/gptq/q_gemm.cu"
"csrc/quantization/compressed_tensors/int8_quant_kernels.cu" "csrc/quantization/compressed_tensors/int8_quant_kernels.cu"
# "csrc/quantization/fp8/common.cu" # "csrc/quantization/fp8/common.cu"
"csrc/cuda_utils_kernels.cu" "csrc/cuda_utils_kernels.cu"
......
#pragma once #pragma once
#include <torch/custom_class.h> #include <torch/custom_class.h>
#include <variant>
namespace vllm { namespace vllm {
......
...@@ -391,7 +391,7 @@ try: ...@@ -391,7 +391,7 @@ try:
import vllm.commit_id import vllm.commit_id
__commit__ = vllm.commit_id.__commit__ __commit__ = vllm.commit_id.__commit__
except Exception as e: except Exception as e:
warnings.warn(f"Failed to read commit hash:\n + str(e)", warnings.warn(f"Failed to read commit hash:\\n + str(e)",
RuntimeWarning, RuntimeWarning,
stacklevel=2) stacklevel=2)
__commit__ = "COMMIT_HASH_PLACEHOLDER" __commit__ = "COMMIT_HASH_PLACEHOLDER"
......
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