wangshuide2020
bf3cfdeff0
fix the validation of Concat and deprecate BNTrainingUpdate, BNTrainingReduce interfaces.
4 years ago
yanzhenxiang2020
e9891d1374
fix some issue
4 years ago
dinglinhe
fd587ca4cd
update ops docs for it need to optimize
4 years ago
i-robot
a19291f051
!23430 code_docs_Print
Merge pull request !23430 from wanyiming/code_docs_Print
4 years ago
jiangshuqiang
c2bd061889
fix summary isolation
4 years ago
wanyiming
b84d2f6d44
code_docs_Print
4 years ago
i-robot
db19a40280
!23365 add print op security
Merge pull request !23365 from fangzehua/print_sec
4 years ago
dinglinhe
9a8c1b3c73
array_ops error recti and others
4 years ago
fangzehua
4ccc635a07
add print security
4 years ago
huchunmei
c75773cf37
Modify error content
4 years ago
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