File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 73
73
python-version : ["3.8", "3.11"]
74
74
fast-compile : [0,1]
75
75
float32 : [0,1]
76
- install-numba : [1]
76
+ install-numba : [0]
77
+ install-jax : [0]
77
78
part :
78
- - " tests --ignore=tests/tensor --ignore=tests/scan --ignore=tests/sparse"
79
+ - " tests --ignore=tests/tensor --ignore=tests/scan --ignore=tests/sparse --ignore=tests/link/numba --ignore=tests/link/jax "
79
80
- " tests/scan"
80
81
- " tests/sparse"
81
82
- " tests/tensor --ignore=tests/tensor/conv --ignore=tests/tensor/rewriting --ignore=tests/tensor/test_math.py --ignore=tests/tensor/test_basic.py --ignore=tests/tensor/test_blas.py --ignore=tests/tensor/test_math_scipy.py --ignore=tests/tensor/test_inplace.py --ignore=tests/tensor/test_elemwise.py"
93
94
part : " tests/tensor/test_math.py"
94
95
- fast-compile : 1
95
96
float32 : 1
97
+ include :
98
+ - install-numba : 1
99
+ fast-compile : 0
100
+ float32 : 0
101
+ part : " tests/link/numba"
102
+ - install-jax : 1
103
+ fast-compile : 0
104
+ float32 : 0
105
+ part : " tests/link/jax"
96
106
steps :
97
107
- uses : actions/checkout@v3
98
108
with :
@@ -118,8 +128,8 @@ jobs:
118
128
shell : bash -l {0}
119
129
run : |
120
130
mamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython" mkl numpy scipy pip mkl-service graphviz cython pytest coverage pytest-cov pytest-benchmark sympy
121
- if [[ $INSTALL_NUMBA == "1" ]]; then mamba install --yes -c conda-forge "python~=${PYTHON_VERSION}=*_cpython" "numpy<1.23" "numba>=0.57" numba-scipy; fi
122
- mamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython" jax jaxlib numpyro
131
+ if [[ $INSTALL_NUMBA == "1" ]]; then mamba install --yes -c conda-forge "python~=${PYTHON_VERSION}=*_cpython" "numpy<1.23" "numba>=0.57" numba-scipy "numpy=1.23" ; fi
132
+ if [[ $INSTALL_JAX == "1" ]]; then mamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython" jax jaxlib numpyro; fi
123
133
pip install -e ./
124
134
mamba list && pip freeze
125
135
python -c 'import pytensor; print(pytensor.config.__str__(print_doc=False))'
You can’t perform that action at this time.
0 commit comments