File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,13 @@ install_miniconda() {
32
32
install_python () {
33
33
pushd /opt/conda
34
34
# Install the select Python version for CI jobs
35
- as_ci_user conda create -n " py_${PYTHON_VERSION} " -y --file /opt/conda/conda-env-ci.txt \
36
- python=" ${PYTHON_VERSION} " \
35
+ as_ci_user conda create -n " py_${PYTHON_VERSION} " -y --file /opt/conda/conda-env-ci.txt python=" ${PYTHON_VERSION} "
37
36
38
37
# From https://github.com/pytorch/pytorch/blob/main/.ci/docker/common/install_conda.sh
39
38
if [[ $( uname -m) == " aarch64" ]]; then
40
- conda_install -y " openblas==0.3.28=*openmp*"
39
+ conda_install " openblas==0.3.28=*openmp*"
41
40
else
42
- conda_install -y mkl=2021.4 .0 mkl-include=2021.4 .0
41
+ conda_install mkl=2022.1 .0 mkl-include=2022.1 .0
43
42
fi
44
43
45
44
popd
You can’t perform that action at this time.
0 commit comments