diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-10-10 10:31:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 10:31:32 +0300 |
commit | 1eff1c543a8f1e9d7ea29182b8c76db5a2efc3c2 (patch) | |
tree | bfa9c80c3236b0ee7cf0ca9baa77d70e7b2f647e /.circleci | |
parent | cc545bfea39002a165f0d3401a5a2739317460c5 (diff) | |
parent | 1cbf913d7dda9441118c0b51f4020048334cd451 (diff) | |
download | numpy-1eff1c543a8f1e9d7ea29182b8c76db5a2efc3c2.tar.gz |
Merge pull request #19478 from r-devulap/svml
ENH: Vectorizing umath module using AVX-512 (open sourced from Intel Short Vector Math Library, SVML)
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index c343e9168..de7f52f81 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,6 +24,12 @@ jobs: if [[ -v CI_PULL_REQUEST ]] ; then git pull --ff-only origin "refs/pull/${CI_PULL_REQUEST//*pull\//}/merge" ; fi - run: + name: update submodules + command: | + git submodule init + git submodule update + + - run: name: create virtual environment, install dependencies command: | sudo apt-get update |