jjfeing
3c90c027a6
fix ubfusion
5 years ago
He Wei
7d9a783993
[auto-monad] Support side-effects by auto-monad
The basic idea is: exploits data dependency to control the execution order
of side-effect operations, and keep the semantics of ANF unchanged.
The ControlDepend primitive is removed and there are two primitives added:
1. UpdateState:
```
a = Assign(para, value)
```
became:
```
a = Assign(para, value, u)
u = UpdateState(u, a)
```
2. Load:
```
x = Add(para, value)
```
became:
```
p = Load(para, u)
x = Add(p, value)
u = UpdateState(u, p)
```
5 years ago
jjfeing
bac7770584
fix mul compile failed
5 years ago
jjfeing
bff8bf0253
remove no use log
5 years ago
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
5 years ago
jjfeing
4f0ecf9857
add checksupport func
5 years ago
liuxiao93
b0a66cc3a2
fix unsupported transnode KMetaTypeNonexDefaultFormat of DynamicRNN and DynamiGRU.
5 years ago
jjfeing
84441eb269
move compile info to stderr
5 years ago
jjfeing
12ba67d6fc
fix dynamic compile info
5 years ago
jjfeing
1984cf8e20
unify mindir
5 years ago
liubuyu
e3fa342d72
support 3d format
5 years ago
jjfeing
dfd894c190
add trace in backend ascend
5 years ago
jjfeing
b05916b597
add trace when bulid operator failed
5 years ago
jjfeing
4be1e29c98
op select failed, provide error msg
5 years ago
mindspore-ci-bot
b411c05de0
!8495 Adapt DynamicGRUV2 forward for Ascend new backend.
From: @liu_xiao_93
Reviewed-by:
Signed-off-by:
5 years ago
caifubi
589dd9e782
fix codex
5 years ago
liuxiao93
d471ac491e
Adapt DynamicGRUV2 forward for Ascend new backend.
5 years ago
jjfeing
3feffc7d62
fix ubfusion bug
5 years ago
Yi Huaijie
d7faa77b5e
support int64 shape
5 years ago
lianliguang
8dfc7485c6
update mindspore/ccsrc/backend/kernel_compiler/tbe/tbe_kernel_select/tbe_kernel_select.cc.
fix bug of nz filter
5 years ago
William Lian
70c2920615
fix bug of filter kernel info
5 years ago
caifubi
d3b978147f
Ascend Dynamic Shape
5 years ago
jjfeing
7dda95d247
set soc version
5 years ago
liubuyu
8af3250477
support dynamic_rnn and dynamic_rnn_grad op
5 years ago
mindspore-ci-bot
55be3c42a5
!5875 Add IFMR op for new backend.
Merge pull request !5875 from liuxiao93/IFMR-OpenSource-new-backend
5 years ago
buxue
76f341221e
choose ai_core when input is 1D Tensor
5 years ago
liuxiao93
0e02df812a
Add IFMR op for new backend.
(cherry picked from commit 17a5995e97 )
5 years ago
buxue
08059f5c61
add check for stridedslice when choose aicpu or aicore
5 years ago
wuxuejian
bd527a331d
update aicpu proto and update module: graphengine
Support Dynamic Shape Aicpu Run Package
adapt tensorengin modify, fix ub fusion
5 years ago
mindspore-ci-bot
ea66324aa3
!5197 add attr for transdata node
Merge pull request !5197 from lianliguang/master
5 years ago
WilliamLian
097f53bed9
add attr for transdata node
5 years ago
jjfeing
09c6cdc2fe
fix codedex bug
5 years ago
zhoufeng
99a94bfd01
clean static check
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
5 years ago
zhousiyi
d0e58dd765
remove ccsrc/common.h
replace frontend/operator/ops.h in backend with base/core_ops.h as
backend should not use any frontend-only primitive
5 years ago
zhoufeng
663278112f
optimize code compile performance
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
5 years ago
WilliamLian
6760d9976d
add reshape type to tensor
5 years ago
Zhang Qinghua
22e0a0ba76
Decouple ME and AKG for GPU.
5 years ago
mindspore-ci-bot
52689a7dcf
!3938 decoupling core and context
Merge pull request !3938 from liubuyu/master
5 years ago
mindspore-ci-bot
a05cdef2f1
!3987 Graph compile performance optimization
Merge pull request !3987 from zhoufeng/graph-compile-performace
5 years ago
zhoufeng
ca7154a548
graph compile performance optimization
Signed-off-by: zhoufeng <zhoufeng54@huawei.com>
5 years ago
liubuyu
d81862a916
decoupling core and context
5 years ago
Zhang Qinghua
89f34017dd
Decouple ME and AKG for Ascend.
5 years ago
Zhang Qinghua
960da5cbed
Decouple the backend TBE from binding Python API.
5 years ago
WilliamLian
0179724dcd
spilit unspported transdata to two transdata from special format -> defualt -> default -> special
5 years ago
mindspore-ci-bot
568da0d510
!3425 fix avgpoolgrad
Merge pull request !3425 from fangzehua/avgpool
5 years ago
fangzehua
86dd0c583a
fix avgpool grad
5 years ago
mindspore-ci-bot
295038d346
!3324 add reduce_any op for vm
Merge pull request !3324 from fangzehua/reduce_any
5 years ago
fangzehua
228a959cc7
add reduce any op for vm
5 years ago
liuxiao93
e924c56c49
Add register information of BNInference.
5 years ago
jjfeing
09ee646da0
fix clang format
5 years ago