dinglinhe
3d85948d11
fix the wrong output of some operators
4 years ago
wangshuide2020
185ddbbe66
remove the redundant code, add docstring of operator init and add default value for args.
4 years ago
simson
91f35d925f
log1p & softplus infer
5 years ago
simson
d9803b2fa1
ops infer
5 years ago
mindspore-ci-bot
373a3a199c
!13415 fix the examples to pass the ci doctest
From: @jiang-shuqiang
Reviewed-by:
Signed-off-by:
5 years ago
jiangshuqiang
517e4697ab
fix the examples to pass the doctest
5 years ago
buxue
4212666399
intercept tuple and list for print
5 years ago
mindspore-ci-bot
b73974c02b
!13014 add raises of MatMul, Maximum, Minimum, etc.
From: @mind-lh
Reviewed-by: @liangchenghui,@wuxuejian
Signed-off-by: @liangchenghui
5 years ago
liuhe
9c5de2b698
add raises of MatMul, Maximum, Minimum, etc.
5 years ago
TFBunny
4d35303265
support string in GPU print
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
mindspore-ci-bot
62d272f648
!12014 Fix GPU Print kernel
From: @TFbunny
Reviewed-by:
Signed-off-by:
5 years ago
TFBunny
5a8c899789
Rework GPU print, supporting pynative mode and graph mode
5 years ago
l00591931
9ec100d069
Change TensorAdd to Add, from r1.1 to master
5 years ago
ougongchang
c6e4b0c85f
Add more log when collect graph and use summary operators
Fix can not collect input data when batch size is 1 and total step
number is 1
Fixed spelling errors
5 years ago
mindspore-ci-bot
ecf5326959
!11431 Add GPU kernel Print
From: @TFbunny
Reviewed-by:
Signed-off-by:
5 years ago
buxue
d3b1c8aa9f
add description for print
5 years ago
TFBunny
1adfefd214
add GPU Print kernel
5 years ago
buxue
7895262638
modify print operator inputs check
5 years ago
wangshuide2020
59f4a8efc4
update the example of some operations.
5 years ago
zhangz0911gm
0ffec7acf9
Fixing some tiny faults in notes of classes' examples
5 years ago
HuangBingjian
5bd859f82f
add print illustration
5 years ago
lilei
43c0092d7f
modifg_ops_note
5 years ago
mindspore-ci-bot
d6eac77ffd
!8774 modify api example
From: @lijiaqi0612
Reviewed-by: @youui,@liangchenghui
Signed-off-by: @liangchenghui
5 years ago
mindspore-ci-bot
d4ebd7bf4a
!8718 Add labels to python files
From: @JunYuLiu
Reviewed-by:
Signed-off-by:
5 years ago
JunYuLiu
4a36c8d9bd
Add labels to python files
5 years ago
Jiaqi
bc8b4d036c
modify example
5 years ago
hedongodng
a5016a0ead
fix: I24U3E, I24U50, I24U7V and I24TZT. Correct operator descriptions
5 years ago
lihongkang
6731c8d1f2
fix bugs
5 years ago
buxue
346bcfa3fd
Rectify and optimize the type checking function
5 years ago
chenzomi
acadb694aa
[ME] delete reduant function in check_parameter
5 years ago
lihongkang
e427ea59df
fix bugs
5 years ago
panfengfeng
2d7b93e958
fix nn & operations api comments
5 years ago
buxue
c3c06514d7
perfect annotation of ops and context and support bool equal
5 years ago
simson
d0aba89ffe
enhancement of API of operations
5 years ago
simson
e7f3a283fc
enhance ops API comment part3
5 years ago
panyifeng
1a54785fe2
remove name arg from gradoperation
5 years ago
panyifeng
637e812347
remove global grad ops
5 years ago
liuxiao93
9bc18ea2e5
Add CTCGrerdyDecoder ops for GE.
5 years ago
kingfo
2120d1ea4a
add InsertGradientOf operator support in pynative mode
5 years ago
simson
61d961ddec
Modify comment of register_backward_hook
5 years ago
mindspore-ci-bot
4c4586ea6f
!2399 fix param KeyError in group params
Merge pull request !2399 from ghzl/fix-params-keyerror-in-group-params
5 years ago
Wei Luning
ef13a4b6fb
adjust cse code when op has side effect.
5 years ago
guohongzilong
90639a2a44
fix params KeyError in group params
5 years ago
mindspore-ci-bot
5b14292f69
!2140 Implementation of mindspore debugger
Merge pull request !2140 from ShidaHe/debugger_dev
5 years ago
ougongchang
3c4f621d75
fix the summary operator is not work in constant folding scene
The summary operator will be optimized when it return the origin value
in constant folding scene. So I return a None value to avoid this.
5 years ago
Shida He
4c056855e0
Implementation for mindspore debugger
5 years ago
simson
c24e90a3a6
Modify the comment of InsertGradientOf
5 years ago
rick_sanchez
e2a322b6b7
Modify code to support dynamic graph.
5 years ago
kingfo
44b656a9e2
add data sync before hook function
5 years ago