提交 f892a4d8 authored 作者: Frederic Bastien's avatar Frederic Bastien

Make explicit that we want in the c key some of the Theano flag

上级 b97d60fd
...@@ -857,7 +857,8 @@ AddConfigVar( ...@@ -857,7 +857,8 @@ AddConfigVar(
"It can be used to speed up compilation, reduce overhead " "It can be used to speed up compilation, reduce overhead "
"(particularly for scalars) and reduce the number of generated C " "(particularly for scalars) and reduce the number of generated C "
"files.", "files.",
BoolParam(True)) BoolParam(True),
in_c_key=True)
AddConfigVar( AddConfigVar(
'cache_optimizations', 'cache_optimizations',
...@@ -1092,7 +1093,10 @@ AddConfigVar('cmodule.remove_gxx_opt', ...@@ -1092,7 +1093,10 @@ AddConfigVar('cmodule.remove_gxx_opt',
"If True, will remove the -O* parameter passed to g++." "If True, will remove the -O* parameter passed to g++."
"This is useful to debug in gdb modules compiled by Theano." "This is useful to debug in gdb modules compiled by Theano."
"The parameter -g is passed by default to g++", "The parameter -g is passed by default to g++",
BoolParam(False)) BoolParam(False),
# TODO: change so that this isn't needed.
# This can be done by handing this in compile_args()
in_c_key=True)
AddConfigVar('cmodule.compilation_warning', AddConfigVar('cmodule.compilation_warning',
"If True, will print compilation warnings.", "If True, will print compilation warnings.",
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论