File tree Expand file tree Collapse file tree 5 files changed +71
-9
lines changed Expand file tree Collapse file tree 5 files changed +71
-9
lines changed Original file line number Diff line number Diff line change 1+ name : Run benchmark tests
2+ on :
3+ pull_request :
4+ push :
5+ branches : [master]
6+
7+ jobs :
8+ run_test :
9+ name : Run optimization bench on intel_dev
10+ runs-on : ubuntu-latest
11+
12+ strategy :
13+ matrix :
14+ python : ['3.9', '3.10', '3.11']
15+
16+ steps :
17+ - name : Cancel Previous Runs
18+ 19+ with :
20+ access_token : ${{ github.token }}
21+
22+ - uses : actions/checkout@v3
23+ with :
24+ fetch-depth : 0
25+
26+ - name : Set pkgs_dirs
27+ run : |
28+ echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
29+
30+ - name : Add conda to system path
31+ run : echo $CONDA/bin >> $GITHUB_PATH
32+
33+ - name : Create test environment
34+ run : conda env create -f environments/intel.yaml
35+
36+ - name : Run scripts
37+ run : |
38+ conda activate intel_dev
39+ python run_tests.py
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- [ ![ Build Status] ( https://travis-ci.org/IntelPython/optimizations_bench.svg?branch=master )] ( https://travis-ci.org/IntelPython/optimizations_bench )
2-
31# Optimization Benchmarks
42Collection of performance benchmarks used to present optimizations implemented for Intel(R) Distribution for Python*
53
Original file line number Diff line number Diff line change 1+ name : intel_env
2+ channels :
3+ - intel
4+ - conda-forge
5+ - nodefaults
6+ dependencies :
7+ - numpy
8+ - numexpr
9+ - numba
10+ - scikit-learn
11+ - cython
12+ - pip
13+ - pip :
14+ - dask
15+ # - rdtsc
Original file line number Diff line number Diff line change 1+ name : stock_env
2+ channels :
3+ - intel
4+ - conda-forge
5+ - nodefaults
6+ dependencies :
7+ - llvmlite
8+ - cython
9+ - pip
10+ - pip :
11+ - numpy
12+ - scikit-learn
13+ - toolz
14+ - numexpr
15+ # - rdtsc
16+ - numba
17+ - dask
You can’t perform that action at this time.
0 commit comments