Commit cbdc58ec authored by zhuwenwen's avatar zhuwenwen
Browse files

Merge branch 'v0.11.0-dev-yql-1.12' into 'v0.11.0-dev'

处理test_concat的ds_cat的导入bug

See merge request dcutoolkit/deeplearing/vllm!361
parents 14705754 184fb9e4
...@@ -7,9 +7,10 @@ import torch ...@@ -7,9 +7,10 @@ import torch
import math import math
import vllm.envs as envs import vllm.envs as envs
if envs.VLLM_USE_LIGHTOP: try:
from lightop import ds_cat from lightop import ds_cat
except Exception:
print("INFO: Please install the 'lightop' package to use 'ds_cat'.\n")
def test_concat_Acc_prefill(shape_pair, dim): def test_concat_Acc_prefill(shape_pair, dim):
......
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