File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 18
18
runs-on : ${{ matrix.os }}
19
19
env :
20
20
TEST_SUBSET : ${{ matrix.test-subset }}
21
- THEANO_FLAGS : floatX=${{ matrix.floatx }},gcc.cxxflags ='-march=native'
21
+ THEANO_FLAGS : floatX=${{ matrix.floatx }},gcc__cxxflags ='-march=native'
22
22
defaults :
23
23
run :
24
24
shell : bash -l {0}
Original file line number Diff line number Diff line change 59
59
runs-on : ${{ matrix.os }}
60
60
env :
61
61
TEST_SUBSET : ${{ matrix.test-subset }}
62
- THEANO_FLAGS : floatX=${{ matrix.floatx }},gcc.cxxflags ='-march=native'
62
+ THEANO_FLAGS : floatX=${{ matrix.floatx }},gcc__cxxflags ='-march=native'
63
63
defaults :
64
64
run :
65
65
shell : bash -l {0}
Original file line number Diff line number Diff line change 17
17
runs-on : ${{ matrix.os }}
18
18
env :
19
19
TEST_SUBSET : ${{ matrix.test-subset }}
20
- THEANO_FLAGS : floatX=${{ matrix.floatx }},gcc.cxxflags ='-march=core2'
20
+ THEANO_FLAGS : floatX=${{ matrix.floatx }},gcc__cxxflags ='-march=core2'
21
21
defaults :
22
22
run :
23
23
shell : bash -l {0}
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ def __set_compiler_flags():
32
32
# Workarounds for Theano compiler problems on various platforms
33
33
import theano
34
34
35
- current = theano .config .gcc . cxxflags
36
- theano .config .gcc . cxxflags = f"{ current } -Wno-c++11-narrowing"
35
+ current = theano .config .gcc__cxxflags
36
+ theano .config .gcc__cxxflags = f"{ current } -Wno-c++11-narrowing"
37
37
38
38
39
39
__set_compiler_flags ()
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
_FLOATX=${FLOATX:= float64}
6
- THEANO_FLAGS=" floatX=${_FLOATX} ,gcc.cxxflags ='-march=core2'" pytest -v --cov=pymc3 --cov-report=xml " $@ " --cov-report term
6
+ THEANO_FLAGS=" floatX=${_FLOATX} ,gcc__cxxflags ='-march=core2'" pytest -v --cov=pymc3 --cov-report=xml " $@ " --cov-report term
You can’t perform that action at this time.
0 commit comments