Skip to content

Commit 4eaef0f

Browse files
authored
Bump release version to v3.4.1 (#2224)
Signed-off-by: Sun, Xuehao <xuehao.sun@intel.com>
1 parent 61c656d commit 4eaef0f

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.azure-pipelines/scripts/fwk_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
echo "export FWs version..."
44
export tensorflow_version='2.15.0-official'
5-
export pytorch_version='2.5.1+cpu'
5+
export pytorch_version='2.5.1'
66
export torchvision_version='0.20.1'
77
export ipex_version='2.5.0+cpu'
88
export onnx_version='1.17.0'

.azure-pipelines/scripts/ut/env_setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ if [[ "${itex_version}" != "" ]]; then
4040
fi
4141

4242
if [[ "${pytorch_version}" != "" ]]; then
43-
pip install torch==${pytorch_version} -f https://download.pytorch.org/whl/torch_stable.html
43+
pip install torch==${pytorch_version} --index-url https://download.pytorch.org/whl/cpu
4444
fi
4545

4646
if [[ "${torchvision_version}" != "" ]]; then
47-
pip install torchvision==${torchvision_version} -f https://download.pytorch.org/whl/torch_stable.html
47+
pip install torchvision==${torchvision_version} --index-url https://download.pytorch.org/whl/cpu
4848
fi
4949

5050
if [[ "${ipex_version}" != "" ]]; then

.azure-pipelines/scripts/ut/run_basic_pt_pruning.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ test_case="run basic pt pruning"
44
echo "${test_case}"
55

66
echo "specify fwk version..."
7-
export pytorch_version='2.4.0+cpu'
8-
export torchvision_version='0.18.0+cpu'
7+
export pytorch_version='2.4.0'
8+
export torchvision_version='0.18.0'
99
export ipex_version='2.4.0+cpu'
1010

1111
echo "set up UT env..."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Intel® Neural Compressor
55
<h3> An open-source Python library supporting popular model compression techniques on all mainstream deep learning frameworks (TensorFlow, PyTorch, and ONNX Runtime)</h3>
66

77
[![python](https://img.shields.io/badge/python-3.8%2B-blue)](https://github.com/intel/neural-compressor)
8-
[![version](https://img.shields.io/badge/release-3.4-green)](https://github.com/intel/neural-compressor/releases)
8+
[![version](https://img.shields.io/badge/release-3.4.1-green)](https://github.com/intel/neural-compressor/releases)
99
[![license](https://img.shields.io/badge/license-Apache%202-blue)](https://github.com/intel/neural-compressor/blob/master/LICENSE)
1010
[![coverage](https://img.shields.io/badge/coverage-85%25-green)](https://github.com/intel/neural-compressor)
1111
[![Downloads](https://static.pepy.tech/personalized-badge/neural-compressor?period=total&units=international_system&left_color=grey&right_color=green&left_text=downloads)](https://pepy.tech/project/neural-compressor)

examples/3.x_api/pytorch/nlp/huggingface_models/language-modeling/quantization/transformers/weight_only/text-generation/llm_quantization_recipes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The scripts [run_generation_cpu_woq.py](./run_generation_cpu_woq.py) provide Wei
3131
cd examples/huggingface/pytorch/text-generation/quantization
3232
pip install -r requirements.txt
3333
pip install neural-compressor==3.1
34-
pip install torch==2.4.0+cpu --index-url https://download.pytorch.org/whl/cpu
34+
pip install torch==2.4.0 --index-url https://download.pytorch.org/whl/cpu
3535
pip install transformers==4.43.0
3636
```
3737

neural_compressor/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
"""Intel® Neural Compressor: An open-source Python library supporting popular model compression techniques."""
18-
__version__ = "3.4"
18+
__version__ = "3.4.1"

0 commit comments

Comments
 (0)