Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
4d4bd16c
提交
4d4bd16c
authored
4月 21, 2024
作者:
Ben Mares
提交者:
Ricardo Vieira
4月 21, 2024
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove deprecated bin module
上级
07275386
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
3 行增加
和
40 行删除
+3
-40
.pre-commit-config.yaml
.pre-commit-config.yaml
+0
-1
MANIFEST.in
MANIFEST.in
+0
-1
__init__.py
bin/__init__.py
+0
-9
pytensor-cache
bin/pytensor-cache
+0
-12
pytensor_cache.py
bin/pytensor_cache.py
+0
-14
pipeline.rst
doc/extending/pipeline.rst
+1
-1
pyproject.toml
pyproject.toml
+2
-2
没有找到文件。
.pre-commit-config.yaml
浏览文件 @
4d4bd16c
...
@@ -6,7 +6,6 @@ exclude: |
...
@@ -6,7 +6,6 @@ exclude: |
versioneer\.py|
versioneer\.py|
pytensor/_version\.py|
pytensor/_version\.py|
doc/.*|
doc/.*|
bin/.*
)$
)$
repos
:
repos
:
-
repo
:
https://github.com/pre-commit/pre-commit-hooks
-
repo
:
https://github.com/pre-commit/pre-commit-hooks
...
...
MANIFEST.in
浏览文件 @
4d4bd16c
...
@@ -8,6 +8,5 @@ global-include *.h
...
@@ -8,6 +8,5 @@ global-include *.h
global-include *.hh
global-include *.hh
global-include *.sh
global-include *.sh
recursive-include doc *
recursive-include doc *
include bin/pytensor-cache
include versioneer.py
include versioneer.py
include pytensor/_version.py
include pytensor/_version.py
bin/__init__.py
deleted
100644 → 0
浏览文件 @
07275386
import
warnings
warnings
.
warn
(
message
=
"Importing 'bin.pytensor_cache' is deprecated. Import from "
"'pytensor.bin.pytensor_cache' instead."
,
category
=
DeprecationWarning
,
stacklevel
=
2
,
# Raise the warning on the import line
)
bin/pytensor-cache
deleted
100755 → 0
浏览文件 @
07275386
#!/usr/bin/env python
import
warnings
from
pytensor.bin.pytensor_cache
import
main
warnings
.
warn
(
message
=
"Using this bin/pytensor-cache script is deprecated. Use the plain "
"pytensor-cache command which is installed along with pytensor."
,
category
=
DeprecationWarning
,
)
main
()
bin/pytensor_cache.py
deleted
100644 → 0
浏览文件 @
07275386
#!/usr/bin/env python
import
warnings
from
pytensor.bin.pytensor_cache
import
*
from
pytensor.bin.pytensor_cache
import
_logger
if
__name__
==
"__main__"
:
warnings
.
warn
(
message
=
"Running 'pytensor_cache.py' is deprecated. Use the pytensor-cache "
"script instead."
,
category
=
DeprecationWarning
,
)
main
()
doc/extending/pipeline.rst
浏览文件 @
4d4bd16c
...
@@ -88,7 +88,7 @@ case if ``borrow`` was True, the thunk would be allowed to reuse--or
...
@@ -88,7 +88,7 @@ case if ``borrow`` was True, the thunk would be allowed to reuse--or
The compile cache is based upon the C++ code of the graph to be compiled.
The compile cache is based upon the C++ code of the graph to be compiled.
So, if you change compilation configuration variables, such as
So, if you change compilation configuration variables, such as
:attr:`config.blas__ldflags`, you will need to manually remove your compile cache,
:attr:`config.blas__ldflags`, you will need to manually remove your compile cache,
using ``
PyTensor/bin/
pytensor-cache clear``
using ``pytensor-cache clear``
PyTensor also implements a lock mechanism that prevents multiple compilations
PyTensor also implements a lock mechanism that prevents multiple compilations
within the same compilation directory (to avoid crashes with parallel
within the same compilation directory (to avoid crashes with parallel
...
...
pyproject.toml
浏览文件 @
4d4bd16c
...
@@ -82,7 +82,7 @@ jax = ["jax", "jaxlib"]
...
@@ -82,7 +82,7 @@ jax = ["jax", "jaxlib"]
numba
=
["numba>=0.57"]
numba
=
["numba>=0.57"]
[tool.setuptools.packages.find]
[tool.setuptools.packages.find]
include
=
[
"pytensor*"
,
"bin"
]
include
=
["pytensor*"]
[tool.setuptools.package-data]
[tool.setuptools.package-data]
pytensor
=
["py.typed"]
pytensor
=
["py.typed"]
...
@@ -122,7 +122,7 @@ testpaths = "tests/"
...
@@ -122,7 +122,7 @@ testpaths = "tests/"
[tool.ruff]
[tool.ruff]
line-length
=
88
line-length
=
88
exclude
=
[
"doc/"
,
"pytensor/_version.py"
,
"bin/pytensor_cache.py"
]
exclude
=
[
"doc/"
,
"pytensor/_version.py"
]
[tool.ruff.lint]
[tool.ruff.lint]
select
=
[
"C"
,
"E"
,
"F"
,
"I"
,
"UP"
,
"W"
,
"RUF"
]
select
=
[
"C"
,
"E"
,
"F"
,
"I"
,
"UP"
,
"W"
,
"RUF"
]
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论