Skip to content

Commit 483c219

Browse files
author
sdp
committed
merge master
Signed-off-by: sdp <[email protected]>
2 parents 83c6a9b + 1703658 commit 483c219

File tree

852 files changed

+2614
-139291
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

852 files changed

+2614
-139291
lines changed

.azure-pipelines/code-scan-neural-insights.yaml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.azure-pipelines/code-scan-neural-solution.yaml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.azure-pipelines/docker/Dockerfile.devel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
3636

3737
RUN ln -sf $(which python3) /usr/bin/python
3838

39-
RUN python -m pip --no-cache-dir install --upgrade pip
39+
RUN python -m pip install pip==24.0
4040
RUN python -m pip install --no-cache-dir setuptools
4141

4242
RUN pip list

.azure-pipelines/model-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ parameters:
5757
- name: PyTorchModelList
5858
type: object
5959
default:
60-
- resnet18
60+
# - resnet18
6161
- resnet18_fx
6262
- name: ONNXModelList
6363
type: object

.azure-pipelines/scripts/codeScan/pydocstyle/pydocstyle.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ log_dir="$work_dir/../scanLog"
1717
mkdir -p $log_dir
1818

1919
scan_path="scan_path.txt"
20-
if [ "${scan_module}" = "neural_solution" ]; then
21-
scan_path="scan_path_neural_solution.txt"
22-
elif [ "${scan_module}" = "neural_insights" ]; then
23-
scan_path="scan_path_neural_insights.txt"
24-
fi
2520

2621
exit_code=0
2722
for line in $(cat ${work_dir}/${scan_path})

.azure-pipelines/scripts/codeScan/pydocstyle/scan_path_neural_insights.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

.azure-pipelines/scripts/codeScan/pydocstyle/scan_path_neural_solution.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

.azure-pipelines/scripts/codeScan/pylint/pylint.sh

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,6 @@ pip install torch \
4444
pydantic \
4545
protobuf
4646

47-
if [ "${scan_module}" = "neural_solution" ]; then
48-
cd /neural-compressor
49-
python setup.py install
50-
51-
echo "Install Neural Solution ... "
52-
bash /neural-compressor/.azure-pipelines/scripts/install_neural_solution.sh
53-
54-
elif [ "${scan_module}" = "neural_insights" ]; then
55-
cd /neural-compressor
56-
python setup.py install
57-
58-
echo "Install Neural Insights ... "
59-
bash /neural-compressor/.azure-pipelines/scripts/install_neural_insights.sh
60-
61-
fi
62-
6347
echo "[DEBUG] list pipdeptree..."
6448
pip install pipdeptree
6549
pipdeptree

.azure-pipelines/scripts/install_nc.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
echo -e "\n Install Neural Compressor ... "
44
cd /neural-compressor
5-
if [[ $1 = *"3x_pt" ]]; then
5+
if [[ $1 = *"3x_pt"* ]]; then
66
python -m pip install --no-cache-dir -r requirements_pt.txt
77
python setup.py pt bdist_wheel
8-
pip install dist/neural_compressor*.whl --force-reinstall
8+
pip install --no-deps dist/neural_compressor*.whl --force-reinstall
99
elif [[ $1 = *"3x_tf"* ]]; then
1010
python -m pip install --no-cache-dir -r requirements_tf.txt
1111
python setup.py tf bdist_wheel

.azure-pipelines/scripts/install_neural_insights.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)