Skip to content

Commit 6f1277e

Browse files
authored
bump version to v0.7.2 (InternLM#3252)
* bump version to v0.7.2 * bump version to v0.7.2 * remote print
1 parent 7c33db5 commit 6f1277e

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

docs/en/get_started/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pip install lmdeploy
2323
The default prebuilt package is compiled on **CUDA 12**. If CUDA 11+ (>=11.3) is required, you can install lmdeploy by:
2424

2525
```shell
26-
export LMDEPLOY_VERSION=0.7.1
26+
export LMDEPLOY_VERSION=0.7.2
2727
export PYTHON_VERSION=38
2828
pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu118-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu118
2929
```

docs/zh_cn/get_started/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pip install lmdeploy
2323
默认的预构建包是在 **CUDA 12** 上编译的。如果需要 CUDA 11+ (>=11.3),你可以使用以下命令安装 lmdeploy:
2424

2525
```shell
26-
export LMDEPLOY_VERSION=0.7.1
26+
export LMDEPLOY_VERSION=0.7.2
2727
export PYTHON_VERSION=38
2828
pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu118-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu118
2929
```

lmdeploy/turbomind/turbomind.py

-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ def _get_logprobs_impl(logprob_vals: torch.Tensor,
334334
tok_res = {idx[i].item(): val[i].item() for i in range(topn)}
335335
token_id = output_ids[pos]
336336
if token_id not in tok_res:
337-
print(token_id, tok_res)
338337
valid_n = n.item()
339338
tok_res[token_id] = \
340339
val[:valid_n][idx[:valid_n] == token_id].item()

lmdeploy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22
from typing import Tuple
33

4-
__version__ = '0.7.1'
4+
__version__ = '0.7.2'
55
short_version = __version__
66

77

0 commit comments

Comments
 (0)