We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80dae6b commit a585c72Copy full SHA for a585c72
pymc3/__init__.py
@@ -81,7 +81,12 @@ def _check_backend_version():
81
def __set_compiler_flags():
82
# Workarounds for Theano compiler problems on various platforms
83
current = theano.config.gcc__cxxflags
84
- theano.config.gcc__cxxflags = f"{current} -Wno-c++11-narrowing"
+ augmented = f"{current} -Wno-c++11-narrowing"
85
+ # Work around compiler bug in GCC < 8.4 related to structured exception
86
+ # handling registers on Windows.
87
+ # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65782 for details.
88
+ augmented = f"{augmented} -fno-asynchronous-unwind-tables"
89
+ theano.config.gcc__cxxflags = augmented
90
91
92
def _hotfix_theano_printing():
0 commit comments