Skip to content

Bump release version to v3.4.1 #2224

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure-pipelines/scripts/fwk_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

echo "export FWs version..."
export tensorflow_version='2.15.0-official'
export pytorch_version='2.5.1+cpu'
export pytorch_version='2.5.1'
export torchvision_version='0.20.1'
export ipex_version='2.5.0+cpu'
export onnx_version='1.17.0'
Expand Down
4 changes: 2 additions & 2 deletions .azure-pipelines/scripts/ut/env_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ if [[ "${itex_version}" != "" ]]; then
fi

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

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

if [[ "${ipex_version}" != "" ]]; then
Expand Down
4 changes: 2 additions & 2 deletions .azure-pipelines/scripts/ut/run_basic_pt_pruning.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ test_case="run basic pt pruning"
echo "${test_case}"

echo "specify fwk version..."
export pytorch_version='2.4.0+cpu'
export torchvision_version='0.18.0+cpu'
export pytorch_version='2.4.0'
export torchvision_version='0.18.0'
export ipex_version='2.4.0+cpu'

echo "set up UT env..."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Intel® Neural Compressor
<h3> An open-source Python library supporting popular model compression techniques on all mainstream deep learning frameworks (TensorFlow, PyTorch, and ONNX Runtime)</h3>

[![python](https://img.shields.io/badge/python-3.8%2B-blue)](https://github.com/intel/neural-compressor)
[![version](https://img.shields.io/badge/release-3.4-green)](https://github.com/intel/neural-compressor/releases)
[![version](https://img.shields.io/badge/release-3.4.1-green)](https://github.com/intel/neural-compressor/releases)
[![license](https://img.shields.io/badge/license-Apache%202-blue)](https://github.com/intel/neural-compressor/blob/master/LICENSE)
[![coverage](https://img.shields.io/badge/coverage-85%25-green)](https://github.com/intel/neural-compressor)
[![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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The scripts [run_generation_cpu_woq.py](./run_generation_cpu_woq.py) provide Wei
cd examples/huggingface/pytorch/text-generation/quantization
pip install -r requirements.txt
pip install neural-compressor==3.1
pip install torch==2.4.0+cpu --index-url https://download.pytorch.org/whl/cpu
pip install torch==2.4.0 --index-url https://download.pytorch.org/whl/cpu
pip install transformers==4.43.0
```

Expand Down
2 changes: 1 addition & 1 deletion neural_compressor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
"""Intel® Neural Compressor: An open-source Python library supporting popular model compression techniques."""
__version__ = "3.4"
__version__ = "3.4.1"
Loading