Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
32bc8b88
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
32bc8b88
编写于
7月 08, 2023
作者:
张
张春乔
提交者:
GitHub
7月 08, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CodeStyle][CINN] ruff F401 and F403 in python/cinn (#55182)
Co-authored-by:
N
SigureMo
<
sigure.qaq@gmail.com
>
上级
832d6516
变更
14
隐藏空白更改
内联
并排
Showing
14 changed file
with
486 addition
and
23 deletion
+486
-23
pyproject.toml
pyproject.toml
+0
-4
python/cinn/__init__.py
python/cinn/__init__.py
+168
-5
python/cinn/backends.py
python/cinn/backends.py
+5
-1
python/cinn/common.py
python/cinn/common.py
+16
-2
python/cinn/framework.py
python/cinn/framework.py
+9
-1
python/cinn/frontend.py
python/cinn/frontend.py
+13
-1
python/cinn/ir/__init__.py
python/cinn/ir/__init__.py
+109
-1
python/cinn/lang.py
python/cinn/lang.py
+18
-2
python/cinn/optim.py
python/cinn/optim.py
+1
-1
python/cinn/pe.py
python/cinn/pe.py
+67
-1
python/cinn/poly.py
python/cinn/poly.py
+9
-1
python/cinn/runtime.py
python/cinn/runtime.py
+54
-1
python/cinn/utils.py
python/cinn/utils.py
+16
-1
python/cinn/version/__init__.py
python/cinn/version/__init__.py
+1
-1
未找到文件。
pyproject.toml
浏览文件 @
32bc8b88
...
...
@@ -98,10 +98,6 @@ ignore = [
# Ignore unnecessary lambda in dy2st unittest test_lambda
"test/dygraph_to_static/test_lambda.py"
=
["PLC3002"]
# Temporarily ignore CINN files, it will fix later
"python/cinn/**"
=
[
"F401"
,
"F403"
,
]
"test/cinn/**"
=
[
"F403"
,
]
python/cinn/__init__.py
浏览文件 @
32bc8b88
...
...
@@ -21,9 +21,172 @@ cuhfile = os.path.join(runtime_include_dir, "cinn_cuda_runtime_source.cuh")
if
os
.
path
.
exists
(
cuhfile
):
os
.
environ
.
setdefault
(
'runtime_include_dir'
,
runtime_include_dir
)
from
.core_api.common
import
*
from
.core_api.backends
import
*
from
.core_api.poly
import
*
from
.core_api.ir
import
*
from
.core_api.lang
import
*
from
.common
import
(
# noqa: F401
BFloat16
,
Bool
,
CINNValue
,
CINNValuePack
,
DefaultHostTarget
,
DefaultNVGPUTarget
,
DefaultTarget
,
Float
,
Float16
,
Int
,
RefCount
,
Shared_CINNValuePack_
,
String
,
Target
,
Type
,
UInt
,
Void
,
_CINNValuePack_
,
get_target
,
is_compiled_with_cuda
,
is_compiled_with_cudnn
,
make_const
,
reset_name_id
,
set_target
,
type_of
,
)
from
.backends
import
(
# noqa: F401
Compiler
,
ExecutionEngine
,
ExecutionOptions
,
)
from
.poly
import
(
# noqa: F401
Condition
,
Iterator
,
SharedStage
,
SharedStageMap
,
Stage
,
StageMap
,
create_stages
,
)
from
.ir
import
(
# noqa: F401
Add
,
And
,
Args
,
Argument
,
BinaryOpNodeAdd
,
BinaryOpNodeAnd
,
BinaryOpNodeDiv
,
BinaryOpNodeEQ
,
BinaryOpNodeFracOp
,
BinaryOpNodeGE
,
BinaryOpNodeGT
,
BinaryOpNodeLE
,
BinaryOpNodeLT
,
BinaryOpNodeMax
,
BinaryOpNodeMin
,
BinaryOpNodeMod
,
BinaryOpNodeMul
,
BinaryOpNodeNE
,
BinaryOpNodeOr
,
BinaryOpNodeSub
,
Block
,
Call
,
CallOp
,
CallType
,
Cast
,
ComputeOp
,
Div
,
EQ
,
Expr
,
ExprNodeAdd
,
ExprNodeAnd
,
ExprNodeBlock
,
ExprNodeCall
,
ExprNodeCast
,
ExprNodeDiv
,
ExprNodeEQ
,
ExprNodeFloatImm
,
ExprNodeFracOp
,
ExprNodeGE
,
ExprNodeGT
,
ExprNodeIntImm
,
ExprNodeLE
,
ExprNodeLT
,
ExprNodeLet
,
ExprNodeLoad
,
ExprNodeMax
,
ExprNodeMin
,
ExprNodeMinus
,
ExprNodeMod
,
ExprNodeMul
,
ExprNodeNE
,
ExprNodeNot
,
ExprNodeOr
,
ExprNodeProduct
,
ExprNodeReduce
,
ExprNodeSelect
,
ExprNodeStore
,
ExprNodeStringImm
,
ExprNodeSub
,
ExprNodeSum
,
ExprNodeUIntImm
,
ExprNode_Module_
,
ExprNode_Tensor_
,
ExprNode_Var_
,
FloatImm
,
FracOp
,
GE
,
GT
,
IRVisitor
,
IntImm
,
IrNode
,
IrNodeRef
,
IrNodeTy
,
LE
,
LT
,
Let
,
Load
,
LoadStoreAddrMnger
,
LoweredFunc
,
Max
,
Min
,
Minus
,
Mod
,
Mul
,
NE
,
Not
,
Operation
,
Or
,
PackedFunc
,
PlaceholderOp
,
Product
,
Reduce
,
Registry
,
Select
,
SharedIrNode
,
Store
,
StringImm
,
Sub
,
Sum
,
Tensor
,
UIntImm
,
UnaryOpNodeMinus
,
UnaryOpNodeNot
,
Var
,
_Module_
,
_Tensor_
,
_Var_
,
)
from
.lang
import
(
# noqa: F401
Buffer
,
Module
,
Placeholder
,
ReturnType
,
call_extern
,
call_lowered
,
compute
,
create_placeholder
,
lower
,
lower_vec
,
reduce_all
,
reduce_any
,
reduce_max
,
reduce_min
,
reduce_mul
,
reduce_sum
,
)
from
.version
import
full_version
as
__version__
python/cinn/backends.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.backends
import
ExecutionEngine
,
ExecutionOptions
from
.core_api.backends
import
(
# noqa: F401
Compiler
,
ExecutionEngine
,
ExecutionOptions
,
)
python/cinn/common.py
浏览文件 @
32bc8b88
...
...
@@ -12,16 +12,30 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.common
import
*
from
.core_api.common
import
(
from
.core_api.common
import
(
# noqa: F401
BFloat16
,
Bool
,
CINNValue
,
CINNValuePack
,
DefaultHostTarget
,
DefaultNVGPUTarget
,
DefaultTarget
,
Float
,
Float16
,
Int
,
RefCount
,
Shared_CINNValuePack_
,
String
,
Target
,
Type
,
UInt
,
Void
,
_CINNValuePack_
,
get_target
,
is_compiled_with_cuda
,
is_compiled_with_cudnn
,
make_const
,
reset_name_id
,
set_target
,
type_of
,
)
python/cinn/framework.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.framework
import
*
from
.core_api.framework
import
(
# noqa: F401
NodeAttr
,
Operator
,
OpValueType
,
OpValueType1
,
Scope
,
SharedTensor
,
Tensor
,
)
python/cinn/frontend.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.frontend
import
*
from
.core_api.frontend
import
(
# noqa: F401
Computation
,
Instruction
,
Interpreter
,
NetBuilder
,
PaddleModelConvertor
,
Placeholder
,
Program
,
Variable
,
get_default_graph_pass
,
get_default_opfusion_pass
,
get_default_program_pass
,
)
python/cinn/ir/__init__.py
浏览文件 @
32bc8b88
...
...
@@ -12,7 +12,115 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
..core_api.ir
import
*
from
..core_api.ir
import
(
# noqa: F401
Add
,
And
,
Args
,
Argument
,
BinaryOpNodeAdd
,
BinaryOpNodeAnd
,
BinaryOpNodeDiv
,
BinaryOpNodeEQ
,
BinaryOpNodeFracOp
,
BinaryOpNodeGE
,
BinaryOpNodeGT
,
BinaryOpNodeLE
,
BinaryOpNodeLT
,
BinaryOpNodeMax
,
BinaryOpNodeMin
,
BinaryOpNodeMod
,
BinaryOpNodeMul
,
BinaryOpNodeNE
,
BinaryOpNodeOr
,
BinaryOpNodeSub
,
Block
,
Call
,
CallOp
,
CallType
,
Cast
,
ComputeOp
,
Div
,
EQ
,
Expr
,
ExprNodeAdd
,
ExprNodeAnd
,
ExprNodeBlock
,
ExprNodeCall
,
ExprNodeCast
,
ExprNodeDiv
,
ExprNodeEQ
,
ExprNodeFloatImm
,
ExprNodeFracOp
,
ExprNodeGE
,
ExprNodeGT
,
ExprNodeIntImm
,
ExprNodeLE
,
ExprNodeLT
,
ExprNodeLet
,
ExprNodeLoad
,
ExprNodeMax
,
ExprNodeMin
,
ExprNodeMinus
,
ExprNodeMod
,
ExprNodeMul
,
ExprNodeNE
,
ExprNodeNot
,
ExprNodeOr
,
ExprNodeProduct
,
ExprNodeReduce
,
ExprNodeSelect
,
ExprNodeStore
,
ExprNodeStringImm
,
ExprNodeSub
,
ExprNodeSum
,
ExprNodeUIntImm
,
ExprNode_Module_
,
ExprNode_Tensor_
,
ExprNode_Var_
,
FloatImm
,
FracOp
,
GE
,
GT
,
IRVisitor
,
IntImm
,
IrNode
,
IrNodeRef
,
IrNodeTy
,
LE
,
LT
,
Let
,
Load
,
LoadStoreAddrMnger
,
LoweredFunc
,
Max
,
Min
,
Minus
,
Mod
,
Mul
,
NE
,
Not
,
Operation
,
Or
,
PackedFunc
,
PlaceholderOp
,
Product
,
Reduce
,
Registry
,
Select
,
SharedIrNode
,
Store
,
StringImm
,
Sub
,
Sum
,
Tensor
,
UIntImm
,
UnaryOpNodeMinus
,
UnaryOpNodeNot
,
Var
,
_Module_
,
_Tensor_
,
_Var_
,
)
def
get_global_func
(
name
):
...
...
python/cinn/lang.py
浏览文件 @
32bc8b88
...
...
@@ -12,5 +12,21 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.lang
import
*
from
.core_api.lang
import
Buffer
,
compute
,
lower
from
.core_api.lang
import
(
# noqa: F401
Buffer
,
Module
,
Placeholder
,
ReturnType
,
call_extern
,
call_lowered
,
compute
,
create_placeholder
,
lower
,
lower_vec
,
reduce_all
,
reduce_any
,
reduce_max
,
reduce_min
,
reduce_mul
,
reduce_sum
,
)
python/cinn/optim.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.optim
import
ir_copy
,
simplify
from
.core_api.optim
import
ir_copy
,
simplify
# noqa: F401
python/cinn/pe.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,70 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.pe
import
*
from
.core_api.pe
import
(
# noqa: F401
abs
,
acos
,
acosh
,
add
,
asin
,
asinh
,
atan
,
atan2
,
atanh
,
bitwise_and
,
bitwise_not
,
bitwise_or
,
bitwise_xor
,
ceil
,
cos
,
cosh
,
divide
,
equal
,
erf
,
exp
,
floor
,
floor_divide
,
greater
,
greater_equal
,
identity
,
isfinite
,
isinf
,
isnan
,
left_shift
,
less
,
less_equal
,
log
,
log2
,
log10
,
logical_and
,
logical_not
,
logical_or
,
logical_xor
,
matmul
,
matmul_mkl
,
max
,
min
,
mod
,
multiply
,
negative
,
not_equal
,
reduce_all
,
reduce_any
,
reduce_max
,
reduce_min
,
reduce_prod
,
reduce_sum
,
remainder
,
right_shift
,
round
,
rsqrt
,
sigmoid
,
sign
,
sin
,
sinh
,
sqrt
,
subtract
,
tan
,
tanh
,
trunc
,
)
python/cinn/poly.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.poly
import
create_stages
from
.core_api.poly
import
(
# noqa: F401
Condition
,
Iterator
,
SharedStage
,
SharedStageMap
,
Stage
,
StageMap
,
create_stages
,
)
python/cinn/runtime.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,57 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.runtime
import
*
from
.core_api.runtime
import
(
# noqa: F401
VoidPointer
,
cinn_arm_device
,
cinn_bool_t
,
cinn_buffer_copy
,
cinn_buffer_copy_to_device
,
cinn_buffer_copy_to_host
,
cinn_buffer_free
,
cinn_buffer_get_data_const_handle
,
cinn_buffer_get_data_handle
,
cinn_buffer_kind_t
,
cinn_buffer_load_float32
,
cinn_buffer_load_float64
,
cinn_buffer_malloc
,
cinn_buffer_on_device
,
cinn_buffer_on_host
,
cinn_buffer_t
,
cinn_device_interface_t
,
cinn_device_kind_t
,
cinn_device_release
,
cinn_device_sync
,
cinn_float32_t
,
cinn_float64_t
,
cinn_int8_t
,
cinn_int32_t
,
cinn_int64_t
,
cinn_opencl_device
,
cinn_pod_value_t
,
cinn_pod_value_to_buffer_p
,
cinn_pod_value_to_double
,
cinn_pod_value_to_float
,
cinn_pod_value_to_int8
,
cinn_pod_value_to_int32
,
cinn_pod_value_to_int64
,
cinn_pod_value_to_void_p
,
cinn_type_code_t
,
cinn_type_float
,
cinn_type_handle
,
cinn_type_int
,
cinn_type_t
,
cinn_type_uint
,
cinn_type_unk
,
cinn_uint32_t
,
cinn_uint64_t
,
cinn_unk_device
,
cinn_unk_t
,
cinn_value_t
,
cinn_x86_device
,
cinn_x86_device_interface
,
clear_seed
,
nullptr
,
seed
,
set_cinn_cudnn_deterministic
,
)
python/cinn/utils.py
浏览文件 @
32bc8b88
...
...
@@ -12,4 +12,19 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.core_api.utils
import
*
from
.core_api.utils
import
(
# noqa: F401
EventType
,
HostEvent
,
HostEventRecorder
,
ProfilerHelper
,
kCodeGen
,
kCompile
,
kCompute
,
kFusePass
,
kGraph
,
kInstruction
,
kOptimize
,
kOrdinary
,
kProgram
,
kSchedule
,
)
python/cinn/version/__init__.py
浏览文件 @
32bc8b88
...
...
@@ -13,6 +13,6 @@
# limitations under the License.
try
:
from
.info
import
*
from
.info
import
*
# noqa: F403
except
:
full_version
=
'Unknown'
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录