Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
f27555e7
提交
f27555e7
authored
10月 01, 2014
作者:
Frederic
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Don't change the defaul log level during import. Otherwise, the user can't get…
Don't change the defaul log level during import. Otherwise, the user can't get the log level he want during theano import. fix gh-2130
上级
a4178507
隐藏空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
0 行增加
和
16 行删除
+0
-16
theano-cache
bin/theano-cache
+0
-1
theano-nose
bin/theano-nose
+0
-1
debugmode.py
theano/compile/debugmode.py
+0
-1
cc.py
theano/gof/cc.py
+0
-1
cmodule.py
theano/gof/cmodule.py
+0
-1
compilelock.py
theano/gof/compilelock.py
+0
-2
__init__.py
theano/sandbox/cuda/__init__.py
+0
-1
basic_ops.py
theano/sandbox/cuda/basic_ops.py
+0
-2
elemwise.py
theano/sandbox/cuda/elemwise.py
+0
-2
nvcc_compiler.py
theano/sandbox/cuda/nvcc_compiler.py
+0
-1
__init__.py
theano/sandbox/gpuarray/__init__.py
+0
-1
scan_perform_ext.py
theano/scan_module/scan_perform_ext.py
+0
-1
blas_headers.py
theano/tensor/blas_headers.py
+0
-1
没有找到文件。
bin/theano-cache
浏览文件 @
f27555e7
...
@@ -8,7 +8,6 @@ from theano import config
...
@@ -8,7 +8,6 @@ from theano import config
from
theano.gof.cc
import
get_module_cache
from
theano.gof.cc
import
get_module_cache
_logger
=
logging
.
getLogger
(
'theano.bin.theano-cache'
)
_logger
=
logging
.
getLogger
(
'theano.bin.theano-cache'
)
_logger
.
setLevel
(
logging
.
WARN
)
def
print_help
(
exit_status
):
def
print_help
(
exit_status
):
...
...
bin/theano-nose
浏览文件 @
f27555e7
...
@@ -18,7 +18,6 @@ disable that plugin.
...
@@ -18,7 +18,6 @@ disable that plugin.
import
logging
import
logging
_logger
=
logging
.
getLogger
(
'theano.bin.theano-nose'
)
_logger
=
logging
.
getLogger
(
'theano.bin.theano-nose'
)
_logger
.
setLevel
(
logging
.
WARN
)
import
os
import
os
import
nose
import
nose
...
...
theano/compile/debugmode.py
浏览文件 @
f27555e7
...
@@ -97,7 +97,6 @@ AddConfigVar('DebugMode.check_preallocated_output_ndim',
...
@@ -97,7 +97,6 @@ AddConfigVar('DebugMode.check_preallocated_output_ndim',
import
logging
import
logging
_logger
=
logging
.
getLogger
(
"theano.compile.debugmode"
)
_logger
=
logging
.
getLogger
(
"theano.compile.debugmode"
)
_logger
.
setLevel
(
logging
.
WARNING
)
# Filter to avoid duplicating optimization warnings
# Filter to avoid duplicating optimization warnings
...
...
theano/gof/cc.py
浏览文件 @
f27555e7
...
@@ -70,7 +70,6 @@ from theano.gof import cmodule
...
@@ -70,7 +70,6 @@ from theano.gof import cmodule
import
logging
import
logging
_logger
=
logging
.
getLogger
(
"theano.gof.cc"
)
_logger
=
logging
.
getLogger
(
"theano.gof.cc"
)
_logger
.
setLevel
(
logging
.
WARN
)
from
theano.gof.callcache
import
CallCache
from
theano.gof.callcache
import
CallCache
...
...
theano/gof/cmodule.py
浏览文件 @
f27555e7
...
@@ -68,7 +68,6 @@ AddConfigVar('cmodule.preload_cache',
...
@@ -68,7 +68,6 @@ AddConfigVar('cmodule.preload_cache',
in_c_key
=
False
)
in_c_key
=
False
)
_logger
=
logging
.
getLogger
(
"theano.gof.cmodule"
)
_logger
=
logging
.
getLogger
(
"theano.gof.cmodule"
)
_logger
.
setLevel
(
logging
.
WARNING
)
METH_VARARGS
=
"METH_VARARGS"
METH_VARARGS
=
"METH_VARARGS"
METH_NOARGS
=
"METH_NOARGS"
METH_NOARGS
=
"METH_NOARGS"
...
...
theano/gof/compilelock.py
浏览文件 @
f27555e7
...
@@ -11,8 +11,6 @@ import logging
...
@@ -11,8 +11,6 @@ import logging
from
theano
import
config
from
theano
import
config
_logger
=
logging
.
getLogger
(
"theano.gof.compilelock"
)
_logger
=
logging
.
getLogger
(
"theano.gof.compilelock"
)
# INFO will show the the messages "Refreshing lock" message
_logger
.
setLevel
(
logging
.
INFO
)
# In seconds, time that a process will wait before deciding to override an
# In seconds, time that a process will wait before deciding to override an
# existing lock. An override only happens when the existing lock is held by
# existing lock. An override only happens when the existing lock is held by
...
...
theano/sandbox/cuda/__init__.py
浏览文件 @
f27555e7
...
@@ -16,7 +16,6 @@ import nvcc_compiler
...
@@ -16,7 +16,6 @@ import nvcc_compiler
_logger_name
=
'theano.sandbox.cuda'
_logger_name
=
'theano.sandbox.cuda'
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
.
setLevel
(
logging
.
WARNING
)
AddConfigVar
(
'pycuda.init'
,
AddConfigVar
(
'pycuda.init'
,
"""If True, always initialize PyCUDA when Theano want to
"""If True, always initialize PyCUDA when Theano want to
...
...
theano/sandbox/cuda/basic_ops.py
浏览文件 @
f27555e7
...
@@ -31,8 +31,6 @@ from theano.sandbox.cuda.elemwise import NaiveAlgo
...
@@ -31,8 +31,6 @@ from theano.sandbox.cuda.elemwise import NaiveAlgo
_logger_name
=
'theano.sandbox.cuda.basic_ops'
_logger_name
=
'theano.sandbox.cuda.basic_ops'
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
.
setLevel
(
logging
.
INFO
)
_logger
.
addHandler
(
logging
.
StreamHandler
())
# TO REMOVE
def
as_cuda_ndarray_variable
(
x
):
def
as_cuda_ndarray_variable
(
x
):
...
...
theano/sandbox/cuda/elemwise.py
浏览文件 @
f27555e7
...
@@ -20,8 +20,6 @@ from theano import gof, scalar, tensor
...
@@ -20,8 +20,6 @@ from theano import gof, scalar, tensor
_logger_name
=
'theano.sandbox.cuda.elemwise'
_logger_name
=
'theano.sandbox.cuda.elemwise'
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
.
setLevel
(
logging
.
INFO
)
_logger
.
addHandler
(
logging
.
StreamHandler
())
#TO REMOVE
def
_logical_scalar
(
x
):
def
_logical_scalar
(
x
):
...
...
theano/sandbox/cuda/nvcc_compiler.py
浏览文件 @
f27555e7
...
@@ -19,7 +19,6 @@ from theano.gof.python25 import any
...
@@ -19,7 +19,6 @@ from theano.gof.python25 import any
from
theano.misc.windows
import
output_subprocess_Popen
from
theano.misc.windows
import
output_subprocess_Popen
_logger
=
logging
.
getLogger
(
"theano.sandbox.cuda.nvcc_compiler"
)
_logger
=
logging
.
getLogger
(
"theano.sandbox.cuda.nvcc_compiler"
)
_logger
.
setLevel
(
logging
.
WARN
)
from
theano.configparser
import
(
config
,
AddConfigVar
,
StrParam
,
from
theano.configparser
import
(
config
,
AddConfigVar
,
StrParam
,
BoolParam
,
ConfigParam
)
BoolParam
,
ConfigParam
)
...
...
theano/sandbox/gpuarray/__init__.py
浏览文件 @
f27555e7
...
@@ -7,7 +7,6 @@ from theano.compile import optdb
...
@@ -7,7 +7,6 @@ from theano.compile import optdb
_logger_name
=
'theano.sandbox.gpuarray'
_logger_name
=
'theano.sandbox.gpuarray'
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
=
logging
.
getLogger
(
_logger_name
)
_logger
.
setLevel
(
logging
.
WARNING
)
error
=
_logger
.
error
error
=
_logger
.
error
info
=
_logger
.
info
info
=
_logger
.
info
...
...
theano/scan_module/scan_perform_ext.py
浏览文件 @
f27555e7
...
@@ -13,7 +13,6 @@ from theano.gof import cmodule
...
@@ -13,7 +13,6 @@ from theano.gof import cmodule
_logger
=
logging
.
getLogger
(
'theano.scan_module.scan_perform'
)
_logger
=
logging
.
getLogger
(
'theano.scan_module.scan_perform'
)
_logger
.
setLevel
(
logging
.
WARN
)
version
=
0.283
# must match constant returned in function get_version()
version
=
0.283
# must match constant returned in function get_version()
...
...
theano/tensor/blas_headers.py
浏览文件 @
f27555e7
...
@@ -12,7 +12,6 @@ from theano import config
...
@@ -12,7 +12,6 @@ from theano import config
from
theano.gof.cmodule
import
GCC_compiler
from
theano.gof.cmodule
import
GCC_compiler
_logger
=
logging
.
getLogger
(
'theano.tensor.blas'
)
_logger
=
logging
.
getLogger
(
'theano.tensor.blas'
)
#_logger.setLevel(logging.INFO)
def
detect_macos_sdot_bug
():
def
detect_macos_sdot_bug
():
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论